/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* Header Section */
header {
    background-color: #474747;
    padding: 5px 20px; /* Increased vertical padding by 20% */
    position: relative;
     z-index: 10; /* Ensure header is above other content */

}

header .divider-top-options {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255); /* Thin black line dividing top bar from options */
}

header .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px; /* Add space for divider */
    position: relative;
}

header .branding {
    display: flex;
    align-items: center;
}

header .branding img {
    height: 50px; /* Increased logo height */
}


header .actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased spacing between buttons */
    margin-left: 0; /* Pushes buttons to the right */
    justify-content: flex-end; /* Ensures alignment to the right */
    width: auto; /* Prevents it from taking full width */
}


header .actions .dashboard-btn {
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    padding: 10px 15px; /* Increased button size */
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px; /* Slightly larger text */
}



header .actions .register-btn,
header .actions .login-btn {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px; /* Increased button size */
    border-radius: 5px;
    font-size: 16px; /* Larger font size */
    
}

header .actions .register-btn {
    background-color: #000000;
}

header .actions .login-btn {
    background-color: #26b826;
}

/* Navigation Bar */
header .nav-bar {
    text-align: center;
    width: 65%;
    display: flex;
    justify-content: center; /* Centers the navigation bar */
    align-items: center;
}

/* Navigation Bar */
header .nav-bar .menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px; /* Space between navigation items */
    flex-wrap: wrap; /* Ensures responsiveness */
}
header .nav-bar .menu li {
    display: flex;
    align-items: center;
    gap: 0px; /* Reduced space between image and text */
}

header .nav-bar .menu li a {
    text-decoration: none;
    color: rgb(255, 255, 255); /* Changed text color to grey */
    font-size: 16px;
    font-weight: normal; /* Made text non-bold */
    padding: 2px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}



header .nav-bar .menu li img {
    height: 25px; /* Small icon size */
    width: 25x; /* Small icon size */
    display: inline-block;
}

@media (max-width: 768px) {

    header {
        background-color: #474747;
        padding: 10px 20px; /* Increased vertical padding by 20% */
        position: relative;
        z-index: 10; /* Ensure header is above other content */
        
    }
        
    
}


/* Banner Section */
.banner {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    
    
}

/* Slideshow Images */
.banner .slideshow img {
    width: 100%;
    height: 550px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade effect */
    object-fit: cover;
}

/* Show the first image */
.banner .slideshow img:first-child {
    opacity: 1;
}

/* Hide mobile image by default */
.mobile-only {
    display: none;
}

/* On Mobile Screens */
@media (max-width: 768px) {
    

    .mobile-only {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .mobile-only:first-child {
        opacity: 1;
    }
}









/* Our Partners Section */
.our-partners {
    padding: 20px 0px;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden; /* Hide overflow to prevent logos from showing outside the container */
}

.our-partners h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00796b;
    text-transform: uppercase;
    font-weight: bold;
}

/* Partners Slider */
.partners-slider {
    position: relative; 
    width: 100%;
    overflow: hidden; /* Ensure only visible logos show */
    margin-bottom: -30px; /* Space between loops */
}

.partners-track {
    display: flex;
    width: calc(15 * 170px); /* Adjust width for 15 images with 10% spacing */
    animation: scroll-right-to-left 25s linear infinite; /* Smooth right-to-left scrolling animation */
    padding: 8px;
    gap: 30px;
}

.partners-slider.reverse .partners-track {
    animation: scroll-left-to-right 25s linear infinite; /* Smooth left-to-right scrolling animation */
}

/* Partner Logo */
.partners-track img {
    width: 150px;
    height: auto;
    margin-top: 5px;
    margin: 20px; /* Increased horizontal spacing by 10% */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Add shadow around images */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-track img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* Increase shadow intensity on hover */
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
    .our-partners {
        padding-bottom: 10px;
        margin-bottom: 0px;
    }
    /* Reduce image size */
    .partners-track img {
        width: 120px; /* 20% smaller */
        height: auto; /* Maintain aspect ratio */
        margin: 0 10px; /* Remove horizontal spacing for edge alignment */
        margin-bottom: 40px;
    }
    .partners-track {
        gap: 0px;
    }
}


/* Right-to-Left Scrolling Animation */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Move the entire track left */
    }
}

.partners-track {
    animation: scroll-right-to-left 60s linear infinite; /* Slower animation: 40 seconds */
}

/* Left-to-Right Scrolling Animation */
@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%); /* Start halfway for seamless scrolling */
    }
    100% {
        transform: translateX(0); /* Move the entire track right */
    }
}

.partners-slider.reverse .partners-track {
    animation: scroll-left-to-right 60s linear infinite; /* Slower animation: 40 seconds */
}















/* Mobile-Specific Styles */
@media (max-width: 768px) {
    /* Hide Desktop Navigation on Mobile */
    header .nav-bar {
        display: none;
        
    }

    /* Top Bar Adjustments for Mobile */
    .top-bar {
        display: flex;
        margin-top: -10px;
        margin-bottom: -10px;
        justify-content: space-between; /* Space between elements */
        align-items: center;
        padding: 0; /* Remove padding inside the top bar */
        
    }

    /* Mobile Toggle Button (Align to Very Left) */
    .mobile-menu-toggle {
        display: flex;
        justify-content: flex-start; /* Align button to the very left */
        align-items: center; /* Center vertically */
        flex: 0; /* Prevent extra space allocation */
        margin: 0; /* Remove any margins */
        padding: 0; /* Remove padding */
    }

    .mobile-menu-toggle button {
        background: none;
        border: none;
        font-size: 24px; /* Adjust toggle button size */
        cursor: pointer;
        padding: 0; /* Remove any internal padding */
        color: #ffffff;
    }

    /* Center the Logo */
    .branding {
        display: flex;
        justify-content: center; /* Center the logo */
        align-items: center; /* Center vertically */
        flex: 1; /* Occupy central space */
    }

    .branding img {
        height: 60px; /* Adjust logo size */
    }

    /* Mobile Icons (Align to Very Right) */
    .mobile-icons {
        display: flex;
        gap: 10px; /* Space between icons */
        justify-content: flex-end; /* Align icons to the very right */
        align-items: center; /* Center vertically */
        flex: 0; /* Prevent extra space allocation */
        margin: 0; /* Remove any margins */
        
    }

    .mobile-icons img {
        width: 30px; /* Adjust icon size */
        height: 30px;
        margin-right: -10px;
        
    }

/* Sliding Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Initially hidden off-screen */
    width: 250px; /* Width of the sliding menu */
    height: 100%;
    background-color: #f4f4f4;
    border-top-right-radius: 15px; /* Rounded top-right corner */
    border-bottom-right-radius: 15px; /* Rounded bottom-right corner */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1001; /* Ensure it appears above overlay */
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease-in-out; /* Smooth sliding animation */
}

/* Show Menu When Active */
.mobile-menu.active {
    left: 0; /* Slide the menu into view */
}

/* Background Overlay */
#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    backdrop-filter: blur(2px); /* Blur effect */
    z-index: 1000; /* Appear below menu but above content */
    opacity: 0;
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade-in effect */
}

/* Show Overlay When Menu is Active */
#menu-overlay.active {
    opacity: 1;
    visibility: visible; /* Make overlay visible */
}


/* Register and Login Buttons */
.mobile-menu .mobile-actions {
    display: flex;
    gap: 10px; /* Space between the buttons */
    align-items: center;
    margin-bottom: 20px;
}

.mobile-menu .mobile-actions .register-btn,
.mobile-menu .mobile-actions .login-btn {
    width: 30%; /* Shortened button width */
    text-decoration: none;
    font-size: 15px; /* Adjusted font size */
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    padding: 8px 10px; /* Adjusted button padding */
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu .mobile-actions .register-btn {
    background-color: #242424;
    color: white;
}

.mobile-menu .mobile-actions .login-btn {
    background-color: #26b826;
    color: white;
}

/* Close Button */
.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* Menu Options */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    display: flex;
    align-items: center;
    padding: 21px 0; /* Added vertical space between options */
    border-bottom: 1px solid #ddd; /* Thin line between options */
}

.mobile-menu ul li img {
    width: 25px; /* Tiny PNG icon size */
    height: 25px;
    margin-right: 10px; /* Space between icon and text */
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #333;
    flex: 1; /* Allow text to occupy remaining space */
    transition: color 0.3s ease; /* Smooth text color animation */
}

/* Help Line Button */
.mobile-menu .help-line {
    display: block;
    width: 100%; /* Full width */
    text-align: center;
    background-color: #000000; /* Button color */
    color: white;
    padding: 10px 0; /* Add padding for height */
    font-size: 16px; /* Font size */
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    margin-top: 20px; /* Space from the last menu option */
    text-decoration: none;
    transition: background-color 0.3s ease; /* Smooth hover animation */
}



/* Hover Effect for Options (Text Color Change) */
.mobile-menu ul li a:hover {
    color: #ff6b6b; /* Change text color on hover */
}



/* Hide Desktop-Only Elements on Mobile */
.desktop-only {
    display: none !important;
}

/* Mobile Menu-Specific Styles */
@media (max-width: 768px) {
    /* Hide Desktop Navigation */
    header .nav-bar {
        display: none;
        
    }

    /* Toggle Button Adjustments */
    .mobile-menu-toggle button {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
    }
    header .top-bar {
        padding-top: 7px;
        padding-bottom: 7px; /* Add space for divider */
        
        
    }
}

/* Desktop-Specific Styles */
@media (min-width: 769px) {
    .mobile-menu {
        display: none; /* Hide sliding menu on desktop */
    }
}

    
}

/* Desktop-Specific Styles */
@media (min-width: 769px) {
    /* Hide Mobile-Specific Elements on Desktop */
    img[alt="Skill India Logo"],
    .mobile-menu img,
    .mobile-icons img {
        display: none; /* Completely hide mobile elements on desktop */
    }

    .mobile-menu-toggle {
        display: none; /* Hide toggle button on desktop */
    }

    .mobile-icons {
        display: none; /* Hide mobile icons on desktop */
    }

    .mobile-menu {
        display: none; /* Hide the mobile menu on desktop */
    }
}
























/* decoratice about us info section */
/* Main Section Styling */
.decorative-info-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle Pattern (Using SVG or PNG) */

.decorative-info-section::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 200px;
    height: 300px;
    background: url('img/icons/16.png') no-repeat center;
    background-size: cover;
    opacity: 0.9;
    transform: rotate(0deg);
}





/* Responsive Adjustments */
@media (max-width: 768px) {
    .decorative-info-section::before,
    .decorative-info-section::after {
        width: 120px;
        height: 120px;
    }

    .decorative-info-section .floating-shape {
        width: 50px;
        height: 50px;
    }
    .decorative-info-section::after {
        
        bottom: 0px;
        right: -12px;
        width: 100px;
        height: 200px;

        
    }
}


/* Section Header */
.section-header {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Decorative Line */
.line-divider {
    width: 90%;
    height: 3px;
    background: linear-gradient(to right, transparent, #00796b, transparent);
    margin: 30px auto;
}

/* Info Container */
.info-container {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(194, 10, 10, 0.1);
}

.info-content {
    flex: 2;
}

.info-content h2 {
    color: #00796b;
    font-size: 22px;
}

.info-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    flex: 1 1 calc(30% - 20px); /* 3 columns on desktop */
    background: linear-gradient(135deg, #f9f9f9, #e3e3e3); /* Fallback gradient */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient */
.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #6b11cbc9, #2574fccb, #ff2a00, #ffe600);
    background-size: 300% 300%;
    animation: gradientMove 5s infinite alternate ease-in-out;
    opacity: 0.1;
    z-index: 0;
}

/* Ensuring the content stays above the animated background */
.feature-box * {
    position: relative;
    z-index: 1;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ff522f33, #e41d7728, #ffeb3b2f);
    background-size: 300% 300%;
    animation: gradientHoverMove 2s infinite alternate ease-in-out;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-box {
        flex: 1 1 100%; /* Single column on mobile */
    }
}


.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 80px;
    height: auto;
    margin-bottom: -15px;
}

.feature-box h3 {
    color: #00796b;
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Content Section */
.content-section {
    text-align: left;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    color: #00796b;
    font-size: 22px;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    margin-top: 30px;
    
}

.testimonials h2 {
    font-size: 24px;
    color: #00796b;
}

.testimonial-box {
    background: linear-gradient(135deg, #00ff4c33, #4c00ff28, #ffe6002f);
    background-size: 300% 300%;
    padding: 15px;
    border-radius: 5px;
    max-width: 600px;
    margin: 15px auto;
    font-style: italic;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-box h4 {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .decorative-info-section {
        max-width: 77%;}

    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .info-image img {
        max-width: 100%;
    }

    .features-grid {
        flex-direction: column;
    }

    .feature-box {
        flex: 1 1 100%;
    }
    .testimonial-box {
        
        padding: 15px;
        border-radius: 10px;
        max-width: 200px;
        margin: 15px 15px 15px 15px;
        
    }
    
    
}

@media (max-width: 480px) {
    .info-content h2,
    .content-section h2,
    .testimonials h2 {
        font-size: 20px;
    }

    .info-content p,
    .content-section p {
        font-size: 14px;
    }
}






/* Client Testimonials Section */
#testimonials {
    background-image: url('img/16.jpg'); /* Add the background image here */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Make the background image stay still */
    padding: 5px 20px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff; /* Adjust text color for better readability */
    margin-bottom: 40px;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Add a dark overlay for better text contrast */
    z-index: -1; /* Ensure overlay is behind content */
}

#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

#testimonials .section-heading {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

#testimonials .section-description {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease;
    color: #333; /* Adjust text color for better visibility */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
    font-size: 16px;
    font-style: italic;
    color: #000000;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #009688;
}

.client-info h4 {
    font-size: 18px;
    margin: 0;
    color: #00796b;
}

.client-info p {
    font-size: 14px;
    margin: 0;
    color: #777;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    /* Mobile-Specific Adjustments for Testimonials */
    .testimonials-grid {
        position: relative;
        height: 150px; /* Adjust height to fit stacked cards */
        overflow: visible; /* Allow cards to move freely */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .testimonial-card {
        position: absolute;
        width: 90%; /* Adjust card width */
        height: auto;
        transition: transform 1s ease, opacity 1s ease;
        transform-origin: center;
        opacity: 0.8; /* Non-active cards are semi-transparent */
    }

    .testimonial-card.active {
        transform: translateX(0) scale(1); /* Center active card */
        opacity: 1; /* Fully visible */
        z-index: 10;
    }

    .testimonial-card.next {
        transform: translateX(1%) scale(0.9); /* Move to the right */
        opacity: 0.7;
        z-index: 5;
    }

    .testimonial-card.previous {
        transform: translateX(-100%) scale(0.9); /* Move to the left */
        opacity: 0.7;
        z-index: 5;
    }
}












/* General Styling */
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.off-plan-projects {
    max-width: 960px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    /* Center the div */
    display: block; /* Ensures it behaves as a block element */
    margin: 40px auto;
    padding: 30px;
}

  
  .off-plan-projects h2 {
    font-size: 24px;
    font-weight: 600;
    color: #00796b;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1540px; /* Increased max width by 10% */
    margin: 0 auto; /* Center the grid within the container */
    margin-bottom: 20px;
  }
  
  
  .project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  .project-image {
    position: relative;
    height: 180px;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #00796b;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00796b;
    margin-bottom: 15px;
  }
  
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    color: #555;
  }
  
  .details-grid p {
    margin: 0;
    font-size: 14px;
    color: #888;
  }
  
  .details-grid strong {
    font-size: 16px;
    color: #000;
  }
  
  .divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
  }
  
  .enquiry-button {
    background-color: #00796b;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    width: 60%; /* Set width to 30% */
    transition: background-color 0.3s ease;
    margin-top: 25px;
    text-align: center; /* Center text within the button */
  }
  
  .enquiry-button:hover {
    background-color: #04564d;
  }
  
  /* Responsive Adjustments */
  @media (min-width: 769px) {
    .off-plan-projects {
      padding: 40px 10%; /* Add space on both sides for computer screen */
    }
  }
  
  @media (max-width: 768px) {
    .off-plan-projects {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.0);
        margin-top: -30px;
        margin-bottom: -40px;
        
    }
    
    
    .project-image {
      height: 180px;
    }
  
    .project-details h3 {
      font-size: 16px;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  
    .enquiry-button {
        width: 50%;
      font-size: 12px;
    }
  }
  



/* General Styling for Category Section */
.explore-category {
  max-width: 960px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: block;
  margin: 40px auto;
  padding: 30px;
}

.explore-category h2 {
  font-size: 24px;
  font-weight: 600;
  color: #00796b;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items in a row on desktop */
  gap: 25px;
  max-width: 1540px;
  margin: 0 auto;
}

.category-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-image {
  position: relative;
  height: 180px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-details {
  padding: 20px;
}

.category-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #00796b;
  margin-bottom: 5px;
}

.category-button {
  background-color: #00796b;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  width: 60%; /* Set width to 60% */
  transition: background-color 0.3s ease;
  margin-top: 25px;
  text-align: center; /* Center text within the button */
}

.category-button:hover {
  background-color: #04564d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr 1fr; /* 2 items in a row on mobile */
  }

  .category-button {
    width: 80%; /* Adjust width for mobile */
    font-size: 12px;
  }
}

@media (min-width: 769px) {
  .explore-category {
    padding: 40px 10%; /* Add space on both sides for computer screens */
  }
}






  .about-section {
    padding: 40px 20px;
    background-color: #ffffff;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-text {
    flex: 1;
    max-width: 600px;
  }
  
  .about-text h2 {
    font-size: 32px;
    color: #009688;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .about-features-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    flex: 1;
  }
  
  .feature-item img {
    width: 60px; /* Reduced size by 20% */
    height: 60px; /* Reduced size by 20% */
  }
  
  .feature-item h4 {
    font-size: 14.4px; /* Reduced size by 20% */
    margin: 0;
    color: #333;
  }
  
  .feature-item p {
    font-size: 13px; /* Reduced size by 20% */
    color: #777;
    margin: 0;
  }
  
  
  .about-image {
    flex: 1;
    max-width: 900px;
  }
  
  /* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: auto;
}

/* Hide all images by default */
.slide {
  display: none;
}

/* Image styling */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 5px solid #009688;
  padding: 5px;
}

/* For transitions */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4} 
  to {opacity: 1}
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
  }
  .about-image {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-features-horizontal {
    flex-direction: column;
    gap: 20px;
  }
}




/* decoratice about us hidden section */

.decorative-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section-header {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.line-divider {
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, #00796b, transparent);
    margin: 20px auto;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    flex: 1 1 calc(30% - 20px); /* 3 columns on desktop */
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease-in-out;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.info-item h3 {
    color: #00796b;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-item {
        flex: 1 1 calc(50% - 20px); /* 2 columns on tablets */
    }
}

@media (max-width: 480px) {
    .info-item {
        flex: 1 1 100%; /* 1 column on mobile */
    }
}












/* Latest News & Blogs Section */
#news-blogs {
    background-color: #f8fafc;
    padding: 30px 20px 20px;
}

#news-blogs .container {
    max-width: 1200px;
    margin: 0 auto;
}

#news-blogs .section-heading {
    font-size: 32px;
    color: #00796b;
    margin-bottom: 20px;
    text-align: center;
}

#news-blogs .section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
}

.blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Blog Card Styling */
.blog-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card .blog-content {
    padding: 20px;
    text-align: left;
}

.blog-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    color: #009688;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
    border: none; /* Ensure there's no border */
    outline: none; /* Remove any outline that may appear on focus */
    background: none; /* Remove background if any */
    padding: 0; /* Ensure no padding around the text */
}

.read-more:hover {
    color: #00796b;
}

/* Hidden Content (For Expanded View) */
.blog-card .extra-content {
    display: none; /* Hide by default */
    padding-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Animation on Click (Elongating the Card) */
.blog-card.expanded {
    height: auto; /* Increased card height when expanded */
}

.blog-card.expanded .extra-content {
    display: block; /* Show the hidden content */
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
    .blog-card {
        width: 100%; /* Full width for mobile */
    }

    .blog-card h3 {
        font-size: 16px;
    }

    .blog-card p {
        font-size: 12px;
    }

    .extra-content p {
        font-size: 14px;
    }
}


/* Map Styling */
/* Latest News & Blogs Section */
.map iframe {
    border-radius: 10px;
    box-shadow: 0px 0px 15px 6px rgba(0, 0, 0, 0.2); /* Slightly increased shadow for better effect */
    width: 60%;
    height: 500px; /* Reduced the height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; /* To center the iframe horizontally */
    margin: 0 auto; /* Center the iframe horizontally */
    border: 5px solid #00796b; /* Added a rounded border */
}

.map iframe:hover {
    transform: scale(1.03); /* Subtle zoom effect on hover */
    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.4);
}



/* Mobile Styles for Latest News & Blogs Section */
@media (max-width: 768px) {
    #news-blogs .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Adds spacing between blogs and map */
    }

    #news-blogs .blogs {
        display: grid;
        grid-template-columns: 1fr; /* Single column for blogs */
        gap: 20px; /* Adds spacing between blog cards */
        width: 100%; /* Ensure it spans the full width */
    }

    #news-blogs .blog-card {
        width: 90%; /* Adjusts the card width to fit within the viewport */
        margin: 0 auto; /* Centers the cards horizontally */
    }

    #news-blogs .map {
        width: 90%; /* Adjusts the map width */
        margin: 0 auto; /* Centers the map horizontally */
    }
    .map iframe {
        height: 350px; /* Increased the height */
        width: 90%;
        
    }
    
}
















/* FAQ & Contact Section */
#faq-contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc, #e3f2fd); /* Soft gradient background */
}

.faq-contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* FAQ & Contact Common Styling */
.faq-section, .contact-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 48%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.faq-section:hover, .contact-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Headings */
.faq-heading, .contact-heading {
    font-size: 26px;
    font-weight: bold;
    color: #00796b;
    margin-bottom: 20px;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #444;
    transition: color 0.3s ease;
    
}

.faq-question:hover {
    color: #009688;
}

.faq-toggle {
    background: #009688;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    margin: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-toggle:hover {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Section */
.contact-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #009688;
    outline: none;
}

.contact-form button,
.contact-quick-actions button {
    background: #009688;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
}

.contact-form button:hover,
.contact-quick-actions button:hover {
    background: #00796b;
}

/* Contact Quick Actions */
.contact-quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.quick-action-btn {
    background: #ddd;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quick-action-btn:hover {
    background: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .faq-contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .faq-section, .contact-section {
        width: 84%;
    }
}

/* Fade-In Animation */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

















/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer-section.contact p:nth-of-type(3) { 
    margin-bottom: 30px; /* Adds space below first address */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}
/* Quick Links Section */


.footer-section.quick-links ul li a {
    color: #f0a500; /* Gold color for the links */
    transition: color 0.3s ease;
}

.footer-section.quick-links ul li a:hover {
    color: #ffd700; /* Slightly brighter gold on hover */
}


.newsletter form {
    display: flex;
    gap: 10px;
}


.newsletter button {
    padding: 10px 20px;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #00796b;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.footer-bottom .social-media {
    margin-bottom: 10px;
}

.footer-bottom .social-media a {
    margin: 0 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.footer-bottom .social-media img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}











/* about us page */
/* Banner Section */
.aboutbanner {
    width: 100%;
    height: 400px;
    position: relative;
    
}

/* Slideshow Images (Desktop) */
.aboutbanner .slideshow img {
    width: 100%;
    height: auto;
    position: absolute;
}

/* Hide mobile image by default */
.mobile-only {
    display: none; /* Hide the mobile image by default */
}

/* On Mobile Screens */
@media (max-width: 768px) {
    .aboutbanner {
        width: 100%;
        height: 200px;
        position: relative;
    }

    /* Slideshow Images */
    .aboutbanner .slideshow img {
        display: none; /* Hide the desktop image */
    }
    
    /* Mobile-only Image */
    .mobile-only {
        display: block; /* Show the mobile image */
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure the image covers the area */
    }
}





/* About us page styling */

/* 🌟 Mission, Vision, Values Section */
.mvv-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: center;
    
}

/* 🌟 Section Title */
.mvv-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    
    margin-bottom: 20px;
}

/* 🌟 MVV Cards Container */
.mvv-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* 🌟 Individual Card */
.mvv-card {
    flex: 1;
    min-width: 300px; /* Prevents shrinking */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box; /* Prevent overflow */
}

/* 🌟 Different Gradient Colors for Each Card */
.mission {
    background: linear-gradient(135deg, #009688, #33cc99);
}

.vision {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
}

.values {
    background: linear-gradient(135deg, #0061ff, #60efff);
}

/* 🌟 Card Title */
.mvv-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 🌟 Card Paragraph */
.mvv-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* 🌟 Hover Effect */
.mvv-card:hover {
    transform: translateY(-5px);
}

/* 🌟 Responsive Design */
@media (max-width: 1024px) {
    .mvv-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
    }

    .mvv-card {
        width: 100%; /* Full width for smaller screens */
        text-align: center;
        max-width: 100%; /* Prevent the cards from exceeding the container width */
    }

    .mvv-card p {
        font-size: 14px;
    }
}




/* 🌟 Company Profile Section */
.company-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: center;
}

/* 🌟 Section Title */
.profile-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 🌟 Section Description */
.profile-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* 🌟 Leadership Team Grid */
.leadership-team {
    display: flex;
    flex-direction: column; /* Vertical arrangement */
    gap: 20px;
}

/* 🌟 Leadership Card */
.leader-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa, #d6e0f0); /* Light gradient */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.leader-card:hover {
    transform: translateY(-5px);
}

/* 🌟 Leader Image */
.leader-image {
    flex: 0 0 120px;
    text-align: center;
    margin-right: 20px;
}
.leader-image1 {
    flex: 0 0 120px;
    text-align: center;
    margin-right: 20px;
}
.leader-image1 img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 3px solid #ff8800;
}

.leader-image img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid #009688;
}

.leader-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
}

/* 🌟 Leader Information */
.leader-info {
    flex: 1;
    text-align: left;
}

.leader-info h3 {
    font-size: 18px;
    color: #00796b;
    margin-bottom: 500;
}

.leader-info h4 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.leader-info p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* 🌟 Responsive Design */
@media (max-width: 1024px) {
    .leader-card {
        flex-direction: column; /* Stack elements */
        text-align: center;
        padding: 15px;
    }

    .leader-image {
        margin: 0 auto 10px;
    }

    .leader-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .profile-title {
        font-size: 24px;
    }

    .profile-description {
        font-size: 14px;
    }

    .leader-card {
        padding: 15px;
    }

    .leader-info h3 {
        font-size: 16px;
    }

    .leader-info h4 {
        font-size: 14px;
        margin-top: -10px;
    }

    .leader-info p {
        font-size: 13px;
    }
}



/* 🌟 Awards Section */
.company-awards {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* 🌟 Section Title */
.awards-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 🌟 Section Description */
.awards-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 🌟 Awards Gallery */
.awards-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 🌟 Award Card */
.award-card {
    flex: 0 1 30%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.award-card:hover {
    transform: translateY(-5px);
}

/* 🌟 Award Images */
.award-card img {
    width: 100%;
    height: 200px; /* Fixed height to keep consistency */
    object-fit: cover;
    border-radius: 8px;
}

/* 🌟 Responsive Design */
@media (max-width: 1024px) {
    .awards-gallery {
        gap: 15px;
    }

    .award-card {
        flex: 0 1 45%; /* 2 images per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .awards-title {
        font-size: 24px;
    }

    .awards-description {
        font-size: 14px;
    }

    .award-card {
        flex: 0 1 100%; /* 1 image per row on mobile */
    }
}






















/* team page */


.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 40px auto;
}

.cta-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
}

.cta-heading {
  flex-grow: 1;
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

.cta-btn {
  padding: 15px 30px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #232323;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    width: 80%;
  }

  .cta-img {
    margin: 0 0 8px 0;
  }

  .cta-heading {
    margin-bottom: 8px;
  }

  .cta-btn {
    width: 100%;
  }
}




/* Main styling for custom contact section */
.custom-contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh; /* Vertically center the section */
  text-align: center;
  padding: 20px;
}

/* Heading and description styling */
.custom-contact-heading {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.custom-contact-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* Styling for the form */
.custom-contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px; /* Limit max width */
  background-color: #f4f7fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-contact-form input,
.custom-contact-form textarea {
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.custom-contact-form button {
  padding: 12px 20px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
}

.custom-contact-form button:hover {
  background-color: #333333;
}

/* Styling for custom quick action buttons */
.custom-contact-quick-actions {
  margin-top: 20px;
}

.custom-quick-action-btn {
  background-color: #00796b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px;
  font-size: 16px;
}

.custom-quick-action-btn:hover {
  background-color: #015e53;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .custom-contact-section {
    height: auto;
    padding: 15px;
  }

  .custom-contact-form {
    max-width: 100%;
    padding: 15px;
  }

  .custom-contact-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .custom-contact-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .custom-quick-action-btn {
    width: 100%;
    margin: 8px 0;
  }
}








/* Popup Overlay Background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box Styling */
.popup-box {
  background: #ffffff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.4s ease-in-out;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
.popup-box h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 24px;
}

/* Description */
.popup-box p {
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Form Styling */
.popup-box form input,
.popup-box form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.popup-box form input:focus,
.popup-box form textarea:focus {
  border-color: #00796b;
  outline: none;
}

/* Submit Button */
.popup-box form button {
  width: 100%;
  background-color: #00584e;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-box form button:hover {
  background-color: #00574d;
}

/* Close Button (X icon) */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #000;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
