/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Clean and modern font */
    line-height: 1.6;
}

/* Header */
header {
    margin-bottom: 10px;
    width:auto
}
/* Navbar Brand Styles */
.navbar-brand {
    display: flex; /* Ensures logo and title are aligned */
    align-items: center; /* Vertically centers items */
    margin-left: -40px; /* Pushes the entire logo/title left */
}

.navbar-logo {
    width: 100px; /* Increase the width of the favicon */
    height: auto; /* Maintain aspect ratio */
}

/* Optional: Increase the font size of the title */
.navbar-brand h4 {
    font-size: 1.5rem; /* Adjust as needed for your design */
    margin: 0; /* Remove default margin */
}


/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem; /* Reduce font size on smaller screens to fit better */
    }
    
    /* Adjust padding for smaller screens */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    /* Optional: Slightly reduce the spacing around the toggler on small screens */
    .navbar-toggler {
        margin-left: 10px;
    }
    .navbar-toggler {
        margin-left: 10px;
    }
}

/* Optional: Styling for the toggler */
.navbar-toggler {
    border: none; /* Remove border for a cleaner look */
}

.navbar {
    padding: 0.7rem 0;
}

.navbar-brand img {
    float: left;
    margin-right: 10px; /* Adjust the spacing as needed */
    max-height: 8%;
    max-width: 8%;
}
.navbar-brand {
    font-size: 1.5rem;
}
.navbar-nav .nav-link {
    color: #fff !important;
}
.navbar-nav .nav-link:hover {
    color: #e67e22 !important;
}
.navbar-nav .dropdown-menu {
    background-color: #333;
}
.navbar-nav .dropdown-item {
    color: #fff;
}
.navbar-nav .dropdown-item:hover {
    background-color: #444;
}
.navbar-toggler {
    border: none;
}
/* Style to show active nav item link as hovered */
.navbar-nav .nav-link.active {
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}
.navbar-nav .nav-link:hover {
    background-color: #c4bdbb;
    color: white;
    border-radius: 5px;
}


/* Set the off-canvas menu width to 75% */
.offcanvas {
    width: 75% !important;
    background-color: #0a0a0a; /* Background color for the menu */
  }
  
  /* Customize the off-canvas header */
  .offcanvas-header {
    background-color: #343a40; /* Dark header */
    color: white;
  }
  
/* Styling for the logo image */
.logo-img {
    width: 80px; /* Adjust the logo size */
    height: auto;
    margin-right: 5px; /* Space between the logo and the title */
  }
  
  /* Customize the font size of the title */
  .offcanvas-title {
    font-size: 1.1rem; /* Adjust as needed */
    font-weight: bold;
    color: white;
  }
  
  .btn-close {
    filter: invert(100%); /* Make the close button white */
  }
  
  /* Dropdown styling */
  .offcanvas-body .dropdown-menu {
    background-color: #3f4142;
    border: none;
    box-shadow: none;
  }
  
  .offcanvas-body .dropdown-item {
    color: #f6f6f8;
    padding: 0.5rem 1rem;
  }
  
  .offcanvas-body .dropdown-item:hover {
    background-color: #007bff;
    color: white;
  }
  
  /* Customize the appearance of dropdowns */
  .nav-item .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .nav-item .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  
  /* Add custom padding inside the off-canvas */
  .offcanvas-body {
    padding: 2rem;
  }
  
  /* Style for different screen sizes */
  @media (max-width: 768px) {
    .offcanvas {
      width: 75% !important; /* Adjusted for mobile */
    }
  }
  
  @media (min-width: 769px) {
    .offcanvas {
      width: 400px; /* Fixed width for larger screens */
    }
  }
  

/* welcome page video animation css*/
/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
}

.video-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.video-overlay p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.video-overlay .btn {
    padding: 10px 20px;
    font-size: 1rem;
    animation: fadeInUp 1s ease-out 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .video-overlay h1 {
        font-size: 17px;
    }

    .video-overlay p {
        font-size:13px;
    }

}


/* Hero Section */
.hero {
    background: #333 url('path-to-your-animation-image-or-video') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0; /* Adjusted padding for better spacing */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 18px;
    margin-bottom: 2rem;
}
.hero-image {
    background-size: contain;
    height: 300px;
  }
.hero .btn {
    background-color: #e67e22;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
}

.hero .btn:hover {
    background-color: #d35400;
    color: #fff;
}
.spacer{
    height: 80px;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto; /* Auto-fit card height and width */
    max-width: 250px; /* Set a maximum width for responsiveness */
    min-height: 270px; /* Ensure a minimum height */
    border: 1px solid rgba(0, 0, 0, 0); /* Fully transparent border */
}


.card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.card-img-top {
    height: 150px;
    object-fit: contain;
}

.card-body {
    padding: 1rem;
    background-color: #f9f9f9;
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-weight: bold;
}

.card-text {
    margin-bottom: 0.8rem;
    font-size: 14px;
}

.mission-card {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.vision-card {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
}

.goals-card {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
}

.mission-card p, .vision-card p, .goals-card p {
    font-size: 15px !important;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h5 {
    margin-bottom: 1rem;
}
/* Default styles for larger screens */
.service-card .card-text {
    font-size: 15px !important; /* Default font size for larger screens */
    line-height: 1.4;
}

.service-card img {
    object-fit: cover;
    height: 180px !important; /* Force this height */
}

/* Responsive breakpoints for medium-sized devices (tablets) */
@media (max-width: 768px) {
    .service-card .card-text {
        font-size: 14px !important; /* Slightly reduce font size */
    }

    .service-card img {
        height: 160px !important; /* Adjust image height */
    }
}

/* Responsive breakpoints for small-sized devices (mobile) */
@media (max-width: 576px) {
    .service-card .card-text {
        font-size: 13px !important; /* Smaller font size for mobile */
    }

    .service-card img {
        height: 140px !important; /* Reduce image height for smaller screens */
    }
}

.badge {
    font-size: 1.2rem;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .service-card img {
        height: 150px;
    }
}


/* Portfolio Cards Styling */
.rotate-card:hover {
    transform: rotate(5deg);
    transition: transform 0.3s;
}
.btn-warning {
    background-color: #e67e22;
    color: #fff;
    border: none;
}

.btn-warning:hover {
    background-color: #c20a6f;
    color: #fff;
}

#about-section {
    background-color: #f8f9fa; /* Light background for contrast */
}

#about-section h2 {
    font-size: 2.5rem; /* Adjust font size for better visibility */
    margin-bottom: 1rem;
}

#about-section p {
    font-size: 1.125rem; /* Slightly larger font size for readability */
    margin-bottom: 1.5rem;
}

#about-section img {
    max-width: 100%;
    height: auto; /* Responsive image */
}

#about-section .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

#about-section .btn i {
    margin-right: 0.5rem; /* Space between icon and text */
}

@media (max-width: 768px) {
    #about-section h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    #about-section p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}

.contact-container {
    background-color: white; /* White background for the container */
    padding: 20px; /* Padding around the container */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}
.button-group .btn {
    flex: 1 0 45%; /* Allow buttons to grow to 45% width */
    max-width: 120px; /* Set a max width for buttons */
    margin: 5px; /* Spacing between buttons */
    font-size: 1.2rem; /* Font size for icons */
    text-align: center; /* Center the icons */
}

@media (max-width: 768px) {
    .button-group .btn {
        flex: 1 0 48%; /* Adjust to fit 2 buttons per row */
        max-width: 48%; /* Max width to ensure two buttons fit */
        font-size: 1rem; /* Smaller font size for mobile */
    }
}

/* Testimonials section */
.testimonial-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 250px;   /* Fixed container width */
    height: 250px;  /* Fixed container height */
    border-radius: 50%;  /* Circular container */
    overflow: hidden;  /* Clips image overflow */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;  /* Centers the container horizontally */
    background-color: #f1f1f1;  /* Optional: a background color for better visibility */
}

.testimonial-img img {
    width: 100%;  /* Image will fill the container width */
    height: 100%;  /* Image will fill the container height */
    object-fit: cover;  /* Ensures the whole image is visible inside the container */
    border-radius: 50%;  /* Ensures the image is circular */
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-meta h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.testimonial-meta p {
    font-size: 14px;
    color: #777;
}
.quote-icon {
    font-size: 2em; /* Adjust size as needed */
    color: #0a4fe4; /* Color of the quotation mark */
    position: relative; /* Position relative for alignment */
}

/* Hide Swiper navigation buttons on mobile devices */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* Hide the buttons */
    }
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #5c5e61; /* Customize the color */
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #1542d6; /* Customize the active color */
    opacity: 1;
}


/* FAQs Section */
#faqs .accordion-item {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    margin-bottom: 10px;
}
#faqs .accordion-header {
    background-color: #f8f9fa;
}
#faqs .accordion-button {
    background-color: #f8f9fa;
    color: #333;
}
#faqs .accordion-button:not(.collapsed) {
    color: #e67e22;
    background-color: #e2e6ea;
}
#faqs .accordion-body {
    background-color: #fff;
}


/* Let's Talk Dropdown Styles */
.phone-link {
    color: #fff;

}

.phone-link:hover {
    background-color: #218838 !important; /* Darker green on hover */
}

.whatsapp-link {
    color: #fff;
  
}

.whatsapp-link:hover {
    background-color: #1EBE53 !important; /* Darker WhatsApp color on hover */
}

.email-link {
    color: #fff;

}

.email-link:hover {
    background-color: #B33627 !important; /* Darker Gmail red on hover */
}

        .landmark-image {
            width: 100%; /* Ensures it takes up the full container width */
            height: 390px; /* Sets a fixed height for larger screens */
            object-fit: cover; /* Ensures the image covers the height and width while cropping excess */
            border-radius: 8px; /* Rounded corners for styling */
        }

        /* Media query for smaller screens */
        @media (max-width: 768px) {
            .landmark-image {
                height: 300px; /* Adjust height for tablet screens */
            }
        }

        @media (max-width: 480px) {
            .landmark-image {
                height: 200px; /* Adjust height for mobile screens */
            }
        }

   
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* sticky whatsapp icon */
    .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 50px; /* Default size for larger screens */
        color: #25D366;  /* WhatsApp color */
        z-index: 1000;
        text-decoration: none; /* Ensure no underline */
    }
    
    .whatsapp-icon .tooltip-text {
        visibility: hidden;
        width: 220px;
        background-color: #54fc06;
        color: #0a0a0a;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        bottom: 50%; /* Aligns vertically with the middle of the icon */
        right: 130%; /* Moves the tooltip to the left of the icon */
        transform: translateY(50%);
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 1rem;
        white-space: nowrap; /* Prevents text from wrapping */
    }
    
    /* Show the tooltip when hovering */
    .whatsapp-icon:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
    
    
    .whatsapp-icon i {
        font-size: 50px; /* Default size for larger screens */
        color: #25D366;
    }
    
    .whatsapp-icon:hover i {
        color: #20b858; /* Darker green on hover */
        transform: scale(1.1); /* Zoom effect on hover */
    }
    
    /* Media query for small screens */
    @media (max-width: 767px) {
        .whatsapp-icon {
            bottom: 15px;
            right: 15px;
            font-size: 40px; /* Smaller size for mobile devices */
        }
    
        .whatsapp-icon i {
            font-size: 40px; /* Adjust the size of the icon for mobile */
        }
    }
    
    /* Media query for extra small screens (e.g., very small mobile screens) */
    @media (max-width: 480px) {
        .whatsapp-icon {
            bottom: 10px;
            right: 10px;
            font-size: 35px; /* Even smaller size for very small screens */
        }
    
        .whatsapp-icon i {
            font-size: 35px; /* Adjust the size of the icon further */
        }
    }
    

/* Footer Section Styles */
footer {
    background-color: #32318e; /* Dark background color */
    color: #ffffff; /* White text color */
}

footer .container {
    max-width: 1200px; /* Max width to align with the main content */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Padding around the content */
}

/* List styles */
footer ul {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: center; /* Center the links horizontally */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

footer ul li {
    margin: 0 15px; /* Space between links */
}

/* Social Links */
footer .social-links {
    margin: 20px 0; /* Margin for social links */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center social icons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

footer .social-links a {
    display: inline-flex; /* Flexbox for proper alignment */
    align-items: center; /* Center items vertically */
    margin: 0 10px; /* Space between social icons */
    font-size: 1.5rem; /* Font size for social icons */
    transition: transform 0.3s; /* Smooth transformation */
    color: white; /* Ensure the icons are white */
}

footer .social-links a:hover {
    transform: scale(1.1); /* Scale up on hover */
}

/* Footer text */
footer p {
    margin: 15px 0 0; /* Top margin for spacing */
    font-size: 0.9rem; /* Smaller font size for copyright */
    text-align: center; /* Center align text */
}

/* Contact Section Styles */
.mb-3 {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    align-items: center; /* Center vertically */
    gap: 20px; /* Add space between items */
    padding: 10px; /* Add padding around the section */
    background-color: Dark; /* Background color for the section */
    border-radius: 8px; /* Rounded corners */
    justify-content: center; /* Center items horizontally */
}

.mb-3 a {
    color: white; /* Text color */
    text-decoration: none; /* Remove underline from links */
    font-size: 16px; /* Font size */
    transition: color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

.mb-3 a:hover {
    color: #ffdd57; /* Change color on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}

.mb-3 i {
    margin-right: 8px; /* Space between icon and text */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .mb-3 {
        flex-direction: column; /* Stack items on smaller screens */
        align-items: center; /* Align items to center */
    }

    .mb-3 a {
        margin-bottom: 10px; /* Add space between stacked items */
    }

    footer ul {
        flex-direction: row; /* Display links horizontally on small screens */
        align-items: center; /* Center align items */
        justify-content: center; /* Center the items */
    }

    footer ul li {
        margin: 5px; /* Add space between items */
    }

    footer .social-links a {
        margin: 5px; /* Space between social icons */
        font-size: 1.2rem; /* Reduce font size for smaller screens */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2rem;
}
.hero p {
    font-size: 1.2rem;
}
}

/* Add this CSS for card spacing */
@media (max-width: 576px) {
.mission-card, .vision-card, .goals-card {
    margin-bottom: 15px; /* Adjusts the space between cards on mobile */
    width: 100%; /* Ensures cards take full width */
}
}


/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .col-md-4 {
        padding: 0.2rem; /* Add padding between cards */
        margin-bottom: 10px;
    }

    .card {
        max-width: 100%; /* Let the card fill available width */
        min-height: 250px; /* Adjust to better fit the content */
        padding: 0.2rem; /* Provide padding inside the card */
        margin: 0 auto; /* Center the card in the grid */
        border: none; /* Ensure no visible borders */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Slight shadow for better visibility */
        border-radius: 10px; /* Round the corners for a modern look */
        transition: transform 0.3s ease-in-out;
    }

    .card-img-top {
        object-fit: contain; /* Ensure image fits within the card */
        width: 100%; /* Full width inside the card */
        max-height: 200px; /* Limit max height of the image to prevent oversized images */
        border-radius: 10px 10px 0 0; /* Round the image corners to match the card */
    }

    .card-body {
        padding: 0.2rem; /* Add some spacing around text */
        text-align: center; /* Center the text for a balanced look */
    }

    .card-title {
        font-size: 1rem; /* Slightly reduce font size for smaller screens */
        font-weight: 600; /* Keep the title bold and visible */
    }

    .card-text {
        font-size: 0.85rem; /* Smaller font size for the description */
        line-height: 1.3; /* Provide enough space between lines */
        color: #666; /* Lighter text color for description */
    }

    /* Optional: Add hover effect */
    .card:hover {
        transform: scale(1.05); /* Slightly increase size on hover */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    }
}

.btn.btn-warning {
    font-size: 0.8rem; /* Reduce font size */
    padding: 0.4rem 0.6rem; /* Adjust padding for a smaller button */
}


