/*:root {
    --primary: #FFB400;
    --dark-blue: #0A0E27;
    --bg-light: #f4f7f6;
}*/

:root {
    --primary-gold: #FFB400;
    --bg-light-gray: #F0F4F7;
    --dark-text: #1a1a1a;
    --dark-blue: #04004A;
    --bg-light-blue: #EEF1F6;
    --black-text: #000;
    --white-text: #FFF;
    --bg-white: #fff;
    --border-color: #E7EAEF;
}


* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: sans-serif; overflow-x: hidden; }
.container { padding: 80px 8%; }

/* Layout Helpers */
.info-block { display: flex; align-items: center; gap: 50px; }
.reverse { flex-direction: row-reverse; }

/* Shapes from Screenshot */
.img-right img { border-radius: 250px 0 0 250px; width: 100%; height: auto; }
.img-left img { border-radius: 0 250px 250px 0; width: 100%; height: auto; }

/**/
.w-full{max-width: 100%;}
.h-full{max-height: 100%;}
.object-cover{width: 100%;}
.align-left{align-items: flex-start !important;}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0,7,36,0.55), rgba(0,7,36,0.55)), url('Images/Hero_image1.jpg');
    /*height: 100%;*/ background-size: cover; color: white; text-align: center;
}
nav { display: flex; justify-content: space-between; padding: 20px 8%; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; }

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400&display=swap');

.navbar {
    position: fixed;      /* Keeps the header in place */
    top: 0;               /* Aligns it to the very top */
    left: 0;
    width: 100%;          /* Spans the full width of the screen */
    z-index: 1000;        /* Ensures it stays above images and text */
    
    /* Layout styling to match screenshot */
    hdisplay: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;   /* Adjust padding to match your design */
    
    /* Glassmorphism/Semi-transparent background (Optional) */
    /* This helps the nav stay readable over different section colors */
    background-color: rgba(0, 3, 14, 0.80); 
    backdrop-filter: blur(5px); 
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px; /* Adjust spacing between links */
}

/* Default State */
.nav-links a {
    font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    font-weight: 400; /* Regular */
    color: #CECECE;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color fade */
    position: relative;
    padding-bottom: 5px;
}

/* Hover State */
.nav-links a:hover {
    color: #FF6F10;
}

/* Active State */
/* The screenshot shows an orange underline for the 'Home' link */
.nav-links a.active {
    color: #FF6F10;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6F10;
}

/* Stats */
.stats-bar { font-family: 'Urbanist', sans-serif; display: flex; justify-content: space-around; background: #fff; padding: 40px 8%; border-bottom: 1px solid #eee; }
.stat-item h2 { color: var(--dark-blue); font-size: 2.5rem; }
.stat-item p{color: #595959}

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.service-card { border-radius: 15px; overflow: hidden; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.card-img { height: 250px; background-size: cover; }
.service-card h3 { padding: 15px; text-align: left; }

/* Client Section */
.clients { background: var(--dark-blue); color: white; text-align: center; padding: 60px 8%; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.logo-box { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; font-weight: bold; }

/* Footer */
.footer { background: #000724; color: #ccc; padding: 60px 8% 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding: 0 0 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-bottom { border-top: 1px solid #6B798B; padding-top: 30px; text-align: center; font-size: 12px; }

/* Button Styles */
.btn-primary { background-color:#FFAA00; border: none; padding: 12px 30px; border-radius: 30px; cursor: pointer; font-weight: regular; }
.btn-outline { background: transparent; border: 2px solid white; color: white; padding: 12px 30px; border-radius: 30px; margin-left: 10px; cursor: pointer; }
/* Universal Button Transition Base */
.btn-primary, .btn-outline, .know-more-btn, .nav-links .formobile, .letstalk-btn .hero-btns button {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px; /* Adjusted based on visual scale */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    position: relative; 
    overflow: hidden; 
    z-index: 1;
}

/* Primary Button Hover (The Gold Buttons) */
.btn-primary:hover {background-color: #e6a200; /* Darker gold */ transform: translateY(-3px); /* Lifts up slightly */ box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);}

/* The "Let's Talk BTN" Circular Button Hover */
.letstalk-btn:hover i{transform: translate(3px, -3px); /* Arrow moves diagonally */ transition: transform 0.3s ease;}
.letstalk-btn:hover {background-color: #A04000; color: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);}
.letstalk-btn:hover .icon-circle {background-color: #FF6F10; color: #fff; transform: rotate(-45deg); /* Tilts the arrow to point "Up-Right" */}
.letstalk-btn:hover .icon-circle i{/* Moves the arrow slightly out and back to grab attention */ animation: arrow-nudge 0.5s infinite alternate;}

.letstalk-btn a.btn-talk:hover{color: #fff;}
/* The "Know More" Circular Button Hover */
.know-more-btn:hover i{transform: translate(3px, -3px); /* Arrow moves diagonally */ transition: transform 0.3s ease;}
.know-more-btn:hover {background-color: #A04000; color: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);}
.know-more-btn:hover .icon-circle {background-color: #FF6F10; color: #fff; transform: rotate(-45deg); /* Tilts the arrow to point "Up-Right" */}
.know-more-btn:hover .icon-circle i{/* Moves the arrow slightly out and back to grab attention */ animation: arrow-nudge 0.5s infinite alternate;}

/* The "Lets's Talk for mobile" Circular Button Hover */
.nav-links .formobile:hover i {transform: translate(3px, -3px); /* Arrow moves diagonally */ transition: transform 0.3s ease;}
.nav-links .formobile:hover {background-color: #A04000; color: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);}
.nav-links .formobile:hover .icon-circle {background-color: #000; color: #fff; transform: rotate(-45deg); /* Tilts the arrow to point "Up-Right" */}
.nav-links .formobile:hover .icon-circle i {animation: arrow-nudge 0.5s infinite alternate;}

/* Outline Button Hover (The Hero Secondary Button) */
.btn-outline:hover i {transform: translate(3px, -3px); /* Arrow moves diagonally */ transition: transform 0.3s ease;}
.btn-outline:hover {border: 2px solid #A04000; color: #fff;}
.btn-outline:hover .icon-circle {background-color: #A04000; color: #fff; transform: rotate(-45deg); /* Tilts the arrow to point "Up-Right" */}
.btn-outline:hover .icon-circle i {/* Moves the arrow slightly out and back to grab attention */ animation: arrow-nudge 0.5s infinite alternate;}


@keyframes arrow-nudge {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(5px);
    }
}

/* Click Effect for all buttons */
button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@900&family=Readex+Pro:wght@400&display=swap');

/* Hero Section Container (Background setup) */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url('your-construction-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 5%;
}
.hero-content{
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
}

/* Sub-heading Styling */
.sub-heading {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px; /* Adjusted based on visual scale */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
}

/* Hero Text Styling */
.hero-text {
    font-family: "Urbanist", sans-serif;
    font-size: 70px;
    font-weight: 800; /* Black weight */
    line-height: 150%;
    color: #ffffff;
    text-transform: uppercase; /* Text decoration: Uppercase */
    margin: 0;
}

/* Button Styling (Optional but included for the look) */
.hero-btns {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-solid {
    background-color: #FFB300;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.container_project img.team{margin-bottom: 0;}

/* Sub-heading Styling */
.sub-heading {
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 700; /* Black weight */
    line-height: 36px;
    color: #ffffff;
    text-transform: uppercase; /* Text decoration: Uppercase */
    letter-spacing: 0.02em;    /* 5% Letter spacing */
    
    /* Center alignment as per the screenshot */
    text-align: center;
    margin-bottom: 20px; 
    max-width: 600px; /* Optional: keeps the text from stretching too wide */
    margin-left: auto;
    margin-right: auto;
}


.section-bg{background-color: var(--bg-light-blue);}
.container {
    font-family: 'Poppins', sans-serif;
    display: flex;
    width: 100%;
    /*max-width: 1200px;*/
    align-items: center;
    padding: 80px 8%;
    /*gap: 40px;*/
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
}
/* Left Column Styling */
.content-side {
    flex: 1;
    padding-right: 50px;
}
.content-right-side{padding-left: 5%; padding-right: 0px;}

.sub-title {
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
}

.main-heading {
    min-width: 60%;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
}

.description {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    color: #595959;
    margin-bottom: 40px;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    background-color: #ffab00; /* Amber Yellow */
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.arrow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 15px;
    font-size: 14px;
}

/* Right Column & Image Clipping */
.image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.curved-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    /* This creates the large curved left edge */
    clip-path: ellipse(100% 100% at 100% 50%);
    border-radius: 250px 0 0 250px;
}
.curved-image-wrapper.reverse-img {border-radius: 0 250px 250px 0; clip-path: none;}

.curved-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curved-image-wrapper:hover img { transform: scale(1.1); }
/* Responsive adjustment */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .content-side {
        padding-left: 0;
    }
    .curved-image-wrapper {
        clip-path: none;
        border-radius: 20px;
    }
}




.services-section {
    padding: 80px 8%;
    background-color: #fff;
}

/* Header Styling */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 40px;
    gap: 40px;
}

.header-left { flex: 1; }
.header-mid { flex: 1; }
.header-right { flex: 1; text-align: right; }

/*.sub-title {
    color: #888;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: bold;
}
*/
.header-left h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--black-text);
}
.header-mid p{
    color: #595959;
    font-size: 14px;
    line-height: 1.6;
}


/* Grid Layout */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-template-rows: auto auto; /* 2 rows */
    gap: 25px;
}

/* Specific Spans to match screenshot */
.large-horizontal { grid-column: span 2; }
.square { grid-column: span 1; }
.tall-vertical { grid-column: span 1; grid-row: span 2; } /* Height spans both rows */
.small-square { grid-column: span 1; }
.medium-horizontal { grid-column: span 2; }

/* Card Aesthetics */
.service-card {
    background: var(--bg-light-gray);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.card-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    flex-grow: 1;
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover img { transform: scale(1.1); }

.service-card h3 {
    padding: 0px;
    font-size: 20px;
    color: var(--black-text);
    font-family: 'Poppins', sans-serif;
}

/* Floating Arrow Icon */
.arrow-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: black;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 993px) {
    .services-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .tall-vertical { grid-row: span 1; }

    /*####### Team Page*/
    .hero-section-area{padding-top: 100px; display: block;}
    .hero-img-home{width: 80%;}
    .hero-section-information-area{width: 100%;margin-left: 0%; margin-top: 0px;}
    .hero-section-information-area h1 {font-size: 44px; line-height: 56px;}
}




.card-container {
    background-color: #EEF1F6; /* Requested BG Color */
    /*width: 450px;*/
    width: 100%;
    padding: 20px;
    border-radius: 20px; /* Requested Border Radius */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.image-wrapper {
    position: relative;
    width: 100%;
    /*height: 250px;*/
    border-radius: 15px;
    overflow: hidden; /* Clips the image */
    background-color: #fff;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* The Curved Bottom-Right Section */
.image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-color: #EEF1F6; /* Matches card background */
    border-top-left-radius: 25px; /* Creates the inward curve */
}

/* The Button */
.floating-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease; /* Hover transaction */
}

.arrow {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.floating-btn:hover {
    background-color: #ffab00; /* Changes color on hover */
    transform: scale(1.1);
}

.floating-btn:hover .arrow {
    transform: translate(2px, -2px); /* Subtle arrow movement */
}

.text-content {
    padding-top: 20px;
    text-align: left; /* Left alignment */
}

.text-content h3 {
    font-size: 18px;
    font-weight: 600;
    /*font-weight: 600;
    color: #111;*/
}





.clients-section {
    padding: 80px 8%;
    background: linear-gradient(rgba(2, 0, 45, 0.90), rgba(2, 0, 45, 0.90)), 
                url('Images/Client_bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}
.clients-header .header-left { flex: 1; }
.clients-header .header-right { flex: 1; }

.clients-header .sub-title {
    color: #FFB400; /* Yellow highlight color */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.clients-header h2 {
    font-size: 24px;
    margin-top: 0px;
    line-height: 1.6;
    color: var(--white-text);
}

.clients-header p {
    color: #D6D6E6;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left !important;
}

.client-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%; /* Each page takes full width of the window */
    flex-shrink: 0;
}

.logo-card {
    background: #ffffff;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 25px;
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}





.client-slider-viewport {
    width: 100%;
    overflow: hidden; /* Clips the pages that are not active */
    margin-top: 50px;
}

.client-slider-track {
    display: flex; /* Positions grid pages side-by-side */
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1); /* Professional "slide" feel */
    width: 200%; /* Adjust to 300% if you add a 3rd page */
}
.client-grid-page {
    width: 50%; /* Each page is half of the 200% track (so 100% of the viewport) */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns */
    grid-template-rows: repeat(2, 110px); /* Exactly 2 rows */
    gap: 20px;
    flex-shrink: 0;
}

.logo-card {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 110px;
}

.logo-card img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
}

/* Dots Styling */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #CCCCCC;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #FB6814; /* Design accent color */
    /*transform: scale(1.3);*/
    width: 20px;
    height: 8px;
    border-radius: 8px;
}
.pagination-dots .onlyformobile{display: none;}

/* Footer Styles */
.main-footer {
    background-color: #02071f; /* Dark navy blue from screenshot */
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}

/* Logo Column */
.footer-logo {
    width: 100px; /* Adjust based on your image size */
}

/* Links Column */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FFB400;
}

/* Contact Column */
.contact-col h4 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Social Column */
.social-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-col a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-col a:hover {
    transform: scale(1.2);
}

/* Divider */
/*.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}*/

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ffffff;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .social-col {
        flex-direction: row;
        margin-top: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6F10; /* Primary Gold */
    color: #000;
    padding: 12px 12px 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.letstalk-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6F10;
    color: #000;
    padding: 12px 12px 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.formobile{display: none;}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-circle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #FF6F10;
    color: #FF6F10;
    padding: 12px 12px 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6F10;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* --- THE HOVER ANIMATION --- */

/*###### Home Page Hero Section*/
.hero-section-homepage {
    background: linear-gradient(rgba(0, 7, 36, 0.95), rgba(0, 7, 36, 0.95));
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #ffffff;
    padding:5%;
}
.hero-section-area{width: 100%; padding-top: 100px; display: flex; flex-direction: row;}
.hero-section-information-area {width: 90%; margin-left: 5%; font-family: 'Poppins', sans-serif;}
.hero-section-information-area span {
    font-size: 12px; 
    text-transform: uppercase; 
    font-weight: bold; 
    background: #b8c5fa;
    border-radius: 4px;
    padding: 5px 10px;
    color: #000;
    margin-bottom: 10px;
    display: inline-block;
}
.hero-section-information-area h1 {font-size: 45px;}
.hero-section-information-area h6 {font-size: 20px; font-weight: 400; padding-top: 0px;}
.hero-section-information-area p {font-size: 16px; line-height: 24px; color: #b1b6c9; padding-top: 20px;}
.hero-section-information-area p.white{color: #fff;}

.project_card_team {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px 20px 16px 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

/*.project_card_team:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}*/

.project_card_team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.project_card_team h6 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 5px;
    color: var(--dark-blue);
}



/*###### About us Page*/
.hero-section-aboutus {
    background: linear-gradient(rgba(0, 7, 36, 0.95), rgba(0, 7, 36, 0.95)), url('Images/about_hero_image.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 5% 25%;
}
.hero-content-aboutus{width: 100%; padding-top: 100px;}
.hero-content-aboutus h2{
    font-family: "Urbanist", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 150%;
    color: #FFAA00;
    text-transform: initial;
    margin: 0;
}
.heading-section{
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex; 
    font-family: "Urbanist", sans-serif; 
    flex-direction: column; 
    text-align: center;
    padding: 40px 20% 0 20%;
    background-color: #EEF1F6;
}
.heading-section h3{font-size: 24px; color: #595959; font-weight: 500; padding-top: 20px;}
.heading-section h4{ font-size: 20px; font-weight: 700; color: #3F3F3F; text-transform: uppercase; border-bottom: 2px solid #3F3F3F; padding-bottom: 10px; }
ul.list-text {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
  }

  ul.list-text li {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px; /* Spacing between lines */
    font-size: 14px;
    line-height: 1.6;
    color: #595959;
  }

  /* Custom Bullet Styling */
  ul.list-text li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #595959; /* Your specified color */
    border-radius: 50%; /* Makes it a circle */
    margin-right: 15px; /* Space between dot and text */
    flex-shrink: 0;
  }

/*###### Services Page*/
  /* --- Grid Layout --- */
  .card-grid {
    display: grid;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  @media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 1023px) and (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767px) { .card-grid { grid-template-columns: 1fr; } }

.service_card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}
.service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service_card .icon-container {
    width: 50px;
    height: 50px;
    background-color: #eff2f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.service_card .icon-container img {width: 30px; height: 30px; opacity: 0.7;}
.service_card h2 {
    margin: 0;
    font-size: 24px;
    color: #25282E;
    font-weight: 700;
  }

.service_card p {
    margin: 0;
    font-size: 14px;
    color: #595959;
    line-height: 1.5;
  }
.service_card .btn {
    margin-top: 10px;
    background-color: #eff2f6;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
  }

.service_card .btn:hover {
    background-color: #e2e7ed;
  }
.service-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px;
}


/* ######### Projects page*/ 

.container_project {display: grid; margin: 0 auto; gap: 20px;}
/* Responsive Breakpoints */
@media (min-width: 1281px) { .container { grid-template-columns: repeat(4, 1fr); } } /* Per your request: max 3 per row */
@media (max-width: 1280px) { .container { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) { .container { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .container { grid-template-columns: repeat(1, 1fr); } }

/* --- Card Styling --- */

.project_card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.project_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.project_card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.project_card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 15px 0;
}

.project_card-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.project_card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #595959;
}

/* --- Modal Gallery Styling --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    position: relative;
    max-width: 80%;
    max-height: 70%;
}

.modal-main-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(0%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

.prev { 
    left: 20px; 
    color: #000; 
    font-size: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center; 
    padding: 0;
}
.next { 
    right: 20px; 
    color: #000; 
    font-size: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center; 
    padding: 0;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    /*margin-top: 20px;*/
    background: rgba(0,0,0,0.8);
    padding: 20px;
    z-index: 99;
    position: absolute;
    bottom: 40px;
    border-radius: 10px;
}

.thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: #fff;
}

/*############ Contact Us Page*/
.container_contactmap{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 80px 0% 0 0;
    justify-content: center;
    align-items: center;
}
/* Container to maintain responsiveness and aspect ratio */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 30%; /* Adjust this percentage to change map height (e.g., 56.25% for 16:9) */
    height: 0;
    overflow: hidden;
    border: 1px solid #E7EAEF; /* Matches your card styling */
    border-radius: 00px; /* Matches your project card styling */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Mobile adjustment: make the map taller on small screens */
@media (max-width: 768px) {
    .map-container {
        padding-bottom: 75%; 
    }
}

/*############### Contact Us Page*/
.contact-section {
            max-width: 1200px;
            margin: 0 auto;
}

/* --- Info Cards Grid --- */
.info-grid {
    /*display: grid;*/
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    min-width: 33%;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #eff2f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-teal);
    font-size: 24px;
}

.info-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-size: 24px;
    color: #25282E;
    font-weight: 700;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    color: #595959;
    line-height: 1.5;
}

/* --- Map Container --- */
.map-wrapper {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    padding: 10px; /* Slight padding for the card look */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 400px; /* Fixed height for desktop */
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px){
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .info-item {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        display: grid;
    }
    .map-container {
        padding-bottom: 300px;
    }
}


/* --- Navigation Bar --- */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    box-sizing: border-box;
    background-color: rgba(0, 3, 14, 0.80); 
    backdrop-filter: blur(5px); 
}

.logo {
    color: var(--text-white);
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1001;
}

/* Desktop Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
}

.nav-links li a.active {
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* Let's Talk Button */
.btn-talk {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 0px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

/* --- Hamburger Menu Icon --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* --- Mobile Responsive Logic --- */
@media (max-width: 992px) {
    
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: var(--nav-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        background-color: rgba(0, 3, 14, 0.95);
    }

    .nav-links.active {right: 0; /* Slide in */}

    .nav-links li { margin: 10px 0; }
    .nav-links li a { font-size: 22px; }
    .nav-links li.formobile a{padding-bottom: 0px;}
    .nav-links li.formobile a:hover{color: #fff;}
    
    /* X transformation for toggle */
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }


    .letstalk-btn {display: none;}
    .nav-links .formobile{
        display:flex;
        align-items: center;
        gap: 10px;
        background-color: #FF6F10; /* Primary Gold */
        color: #000;
        padding: 8px 8px 8px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: regular;
        transition: all 0.3s ease;
    }

    /*####### Team Page*/
    .hero-section-area{padding-top: 100px; display: block;}
    .hero-section-information-area{width: 100%;margin-left: 0%; margin-top: 16px;}
    .hero-section-information-area h1 {font-size: 44px; line-height: 56px;}
    
}

@media (max-width: 768px) {
    .hero{height: 100%;}
    .header-new{padding: 4%;}
    .hero-section{height: 100%;}
    .hero-content{padding-top: 120px;}
    .sub-heading{font-size: 14px; line-height: 24px; margin-bottom: 0;}
    .hero-text{font-size: 36px; line-height: 40px; padding: 20px 0;}
    .hero-btns{margin-top: 20px; padding-bottom: 40px; display: inline-block;}
    .know-more-btn{margin-bottom: 20px;}

    .stats-bar{padding: 30px 4%;}
    .stat-item h2{font-size: 1.5rem;}
    .stat-item p{font-size: 12px;}

    .container{padding: 4%; text-align: left; flex-direction: column-reverse;}
    .content-side{padding-right: 0; margin-top: 20px;}
    .sub-title{font-size: 12px; letter-spacing: 0; margin-bottom: 10px;}
    .main-heading{font-size: 20px; line-height: 1.4; min-width: 100%; margin-bottom: 20px;}
    .curved-image-wrapper.reverse-img{border-radius: 20px;}
    .description{width: 100%; margin-bottom: 20px;}
    .content-side .know-more-btn{margin-bottom: 0px;}

    .services-section{padding: 4%;}
    .services-header{flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 0;}
    .header-left h2 {font-size: 20px; line-height: 1.4;}
    .services-bento-grid{grid-template-columns: none; display: block;}
    .service-card{margin-bottom: 20px;}

    .clients-section{padding: 4%;}
    .clients-header{flex-direction: column; gap: 14px; margin-bottom: 30px;}
    .client-slider-viewport{margin-top: 0;}
    .client-grid-page{display: grid; width: 100%}
    .pagination-dots .onlyformobile{display: block}
    .pagination-dots {margin-top: 20px;}

    .main-footer{padding: 4%;}
    .footer-container{max-width: 100%;}
    .footer-content{gap: 20px;}


    /*####### About Us Page*/
    .hero-section-aboutus{padding: 4%;}
    .hero-content-aboutus{padding-top: 80px;}
    .hero-content-aboutus h2{font-size: 24px; line-height: 130%;}
    .heading-section{padding: 4%;}
    .heading-section h4{font-size: 14px;}
    .heading-section h3{font-size: 18px;}


    .container_contactmap{padding: 4% 0% 0 0}

    /*####### Team Page*/
    .hero-section-area{padding-top: 100px; display: block;}
    .hero-section-information-area{width: 100%;margin-left: 0%; margin-top: 16px;}
    .hero-section-information-area h1 {font-size: 44px; line-height: 56px;}

}

@media (max-width: 480px) {
    .stats-bar{padding: 30px 4%;}
    .stat-item{width: 22%;}
    .stat-item h2{font-size: 1.5rem;}
    .stat-item p{font-size: 12px; display: table-caption;}
}
@media (max-width: 360px) {
    .stats-bar{padding: 30px 4%;}
    .stat-item{width: 22%;}
    .stat-item h2{font-size: 1.2rem;}
    .stat-item p{font-size: 12px; display: table-caption;}
}

        