/* Reset */
body, h1, h2, h3, h4, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}
.navbar {
    background-color: #333; /* Dark background color */
}

.navbar-nav li a {
    color: white !important; /* Ensure text color is white */
}

.navbar-nav li a:hover {
    color: #00c1c1; /* Change the hover color if needed */
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0; /* Compact padding */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-default .navbar-header .logo img {
    max-height: 100px;
}

.navbar-default .navbar-toggle {
    border: none;
    background-color: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #333;
}

.navbar-nav {
    margin: 0;
    float: right;
    padding-top: 40px;
    color: black;
    
}

.navbar-nav li {
    list-style: none;
    text-align: left;
}

.navbar-nav li a {
    font-size: 14px;
    padding: 8px 15px;
    color: white;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.navbar-nav li a:hover {
    color: #00c1c1;
    background-color: transparent;
}

/* For mobile menu */
@media (max-width: 768px) {
    .navbar {
        padding: 5px 0;
    }

    .navbar-nav li a {
        padding: 10px 15px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .navbar-header {
        text-align: center;
    }
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background: linear-gradient(135deg,#00c1c1, #0056b3);
    padding: 30px 20px;
    color: white;
    z-index: 1000;
    overflow-y: auto;
}


.sidebar .logo {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar .logo img {
    height: 80px; /* Adjust this value to change logo height */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    ;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 15px 20px; /* Increased padding for larger clickable area */
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s;
}

.sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}


/* Main Content */
.main-content {
    margin-left: 260px;
    padding: 40px;
}

/* Hero Section */
section {
    background: white;
    padding: 50px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Simple, clean box design for h1 */
section h1 {
    font-size: 30px; /* Standard font size */
    font-family: 'Arial', sans-serif; /* Common, easy-to-read font */
    color: #333; /* Dark color for better readability */
    text-align: center; /* Center-align the text */
    margin-bottom: 20px; /* Space below the heading */
    padding: 15px 30px; /* Padding inside the box for spacing */
    display: inline-block; /* Make the box fit the width of the text */
    background-color: #ddf4f2; /* Light background color */
    border: 1px solid #ccc; /* Light border for a subtle effect */
    border-radius: 5px; /* Rounded corners for a clean look */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    section h1 {
        font-size: 24px; /* Reduce font size on smaller screens */
        padding: 10px 20px; /* Adjust padding on smaller screens */
    }
}




/* List Styling */


/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
footer {
    background:#00c1c1;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

footer img {
    height: 40px;
    margin-bottom: 10px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #bfc4c8;
}

/* Media Queries */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 220px;
    }

    .sidebar ul li a {
        font-size: 16px;
    }
}
/* Basic styling for h3 elements */
section h3 {
    font-size: 24px; /* Set the font size */
    font-family: 'Montserrat', sans-serif; /* Clean and modern font */
    font-weight: 600; /* Slightly bolder text */
    color: #2c3e50; /* Dark gray color for text */
    margin-top: 30px; /* Space before the h3 */
    margin-bottom: 15px; /* Space after the h3 */
    text-align: left; /* Align text to the left */
    line-height: 1.5; /* Ensure good line height for readability */
}

/* Optional additional style to add color to the font */
section h3.special {
    color: #007bff; /* Custom color for special headings, like blue */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    section h3 {
        font-size: 20px; /* Adjust font size for smaller screens */
        margin-top: 20px; /* Reduce margin-top for mobile */
    }
}
/* Basic styling for paragraphs */
section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6; /* Better line spacing for readability */
    margin-bottom: 20px;
}

/* Adjustments for small screens */
@media (max-width: 768px) {
    section p {
        font-size: 16px; /* Reduce font size on small screens */
        margin-bottom: 15px; /* Adjust margin for smaller screens */
        padding: 0 10px; /* Add some horizontal padding for better spacing */
        text-align: justify; /* Justify text for better alignment */
    }
}
.whatsapp-icon {
	position: fixed;
	bottom: 20px; /* Distance from the bottom */
	right: 20px;  /* Distance from the right */
	z-index: 1000; /* Ensures it stays on top of other elements */
}

.whatsapp-icon img {
	width: 60px;
	height: 60px;
	border-radius: 50%; /* Makes it circular */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 80%;
	margin-right: -10px;
}

/* Hover Effects */
.whatsapp-icon img:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.whatsapp-icon img {
		width: 50px;
		height: 50px;
		margin-bottom: 140%;
	margin-right: -10px;
	}
}
