:root {
    /* theme 1 */
    /* rgba(12, 43, 78,0.85) */
    --primary: #0C2B4E;
    --secondary: #1A3D64;
    --accent: #1D546C;
    --light-bg: #d4d1d1;



    /* theme 2 */
    /* rgba(69, 40, 41,0.85) */
    /* --primary: #452829;
    --secondary: #57595B;
    --accent: #E8D1C5;
    --light-bg: #F3E8DF; */



    /* theme 3 */
    /* rgb(6, 40, 61) */
    /* --primary: #06283D;
    --secondary: #1363DF;
    --accent: #47B5FF;
    --light-bg: #DFF6FF; */


    /* theme 4 */
    /* rgb(51, 52, 70) */
    /* --primary: #333446;
    --secondary: #7F8CAA;
    --accent: #B8CFCE;
    --light-bg: #EAEFEF; */




    /* theme 5 */
    /* rgb(26, 26, 25) */
    /* --primary: #1A1A19;
    --secondary: #31511E;
    --accent: #859F3D;
    --light-bg: #F6FCDF; */
}

body {
    font-family: "Roboto", sans-serif;
}



/* Navbar Styling */


.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    line-height: 1.1;
}

.brand-text .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.brand-text .subtitle {
    font-size: 18px;
    color: #555;
    font-weight: 600;
}


.navbar {
    font-size: 17px;
    transition: all .3s ease-in-out;
    /* background-color: rgba(56, 52, 52, 0.19); */
    background-color: var(--light-bg);
    position: fixed !important; 
    top: 0 !important; 
    width: 100% !important; 
    z-index: 1000 !important;
}


.nav-item-custom {
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    color: #383434;
}

.nav-item-custom:hover {
    color: var(--primary);
}

/* Hover underline animation */
.nav-item-custom:after {

    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: 0.3s;
}

.nav-item-custom:hover:after,
.nav-item-custom.active:after {
    width: 100%;
}

.nav-item-custom.active {
    color: var(--primary) !important;
}

/* Sticky + shrink effect */
.navbar.scrolled {
    /* padding-top: 8px !important;
    padding-bottom: 8px !important; */
    background-color: var(--light-bg) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Phone item */

.nav-phone .btn-primary {
    background-color: var(--secondary);
    border: none;
}

.nav-phone .btn-primary:hover {
    background-color: var(--accent);
}
.nav-phone .phone-svg {
    fill: white;
    transition: 0.3s ease;
   
}

.nav-phone .phone-text {
    font-weight: 600;
    color:white;
}
  
.nav-phone a:hover .phone-svg {
    transform: scale(1.15);
}





/* Dropdown Design */
.navbar .dropdown-menu {
    /* background-color: #d4d1d1; */
    background-color: var(--light-bg);
    border-radius: 5px;
    border: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    /* margin: 0px; */
    margin: 0 20PX;
}

.navbar .dropdown-menu .dropdown-item {
    color: #555;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    /* transition: 0.25s; */
    border: 1px darkgray;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);



}

.navbar .dropdown-menu .dropdown-item:hover {

    /* background-color: #d4d1d1; */
    background-color: var(--light-bg);
    color: var(--primary);
    text-decoration: underline;
}



/* Dropdown arrow / caret remove & clean look */
.dropdown-toggle::after {
    display: none !important;
}





/* Hero Section */
.hero {
    height: 100vh;
    /* theme 1 */
    background: linear-gradient(rgba(12, 43, 78, 0.85), rgba(12, 43, 78, 0)),
        url('./images/image2.jpg') center/cover no-repeat;


    padding-top: 100px;
    /* theme 2 */
    /* background: linear-gradient(rgba(69, 40, 41, 0.85), rgba(69, 40, 41, 0.85)),
        url('./images/image2.jpg') center/cover no-repeat; */




    /* theme 3 */
    /* background: linear-gradient(rgba(6, 40, 61, 0.85), rgba(6, 40, 61, 0.85)),
        url('./images/image2.jpg') center/cover no-repeat; */



    /*  theme 4 */
    /* background: linear-gradient(rgba(51, 52, 70, 0.85), rgba(51, 52, 70, 0.85)),
        url('./images/image2.jpg') center/cover no-repeat;  */



    /* theme 5*/
    /* background: linear-gradient(rgba(26, 26, 25, 0.85), rgba(26, 26, 25, 0.85)),
        url('./images/image2.jpg') center/cover no-repeat; */




    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
}

.hero .btn-primary {
    background-color: var(--secondary);
    border: none;
}

.hero .btn-primary:hover {
    background-color: var(--accent);
}

.hero .btn-outline-light:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}



/* Why Choose Us Section */
.why-us {
    background: #f8fafc;
}

.why-box {
    background: #ffffff;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #e6e6e6;
}

.why-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.why-icon, .job-icon {
    font-size: 40px;
    color: var(--primary);
}


/* Services Grid */
 

/* --- 1. Main Service Card Container --- */
.service-card-new {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10); 
    overflow: hidden; /* Important for containing image and setting border-radius */
    position: relative; /* Key for positioning the overlapping icon */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures all cards in the row have the same height */
}

.service-card-new:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* --- 2. Image Styling --- */
.card-image-area {
    width: 100%;
    height: 200px; /* Fixed height for the image part */
    overflow: hidden;
}

.card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card-new:hover .card-image-area img {
    transform: scale(1.05); /* Zoom effect on hover */
}


/* --- 3. Overlapping Icon Position (The Core Requirement) --- */
.service-icon-overlap {
    /* Position Absolute relative to .service-card-new */
    position: absolute; 
    left: 90%;
    /* Top: 150px (Image Height) / 2 + Content Padding (e.g., 20px) */
    top: 200px; /* Adjust this value to exactly halfway between image and content */
    transform: translate(-50%, -50%); /* Centers the element perfectly */
    
    /* Icon Styling */
    background-color: var(--primary);
    color: white;
    font-size: 40px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    /*border: 2px solid white;  White border to make it stand out */
    box-shadow:  0 4px 10px rgba(0, 0, 0, 0.3) ;
    z-index: 10; /*Ensures it stays above image and content*/
}

.service-icon-overlap:hover{
     background-color: var(--accent);
}
/* 4. Content Area Adjustment */
.card-content-area {
    padding-top: 50px !important; /* Make space for the icon */
    min-height: 200px;
}

.service-title-theme {
    /* color: var(--primary); */
    font-size: 1.3rem;
}

.list{
    text-align: left;
    color: #555;
}

/* 5. Button Styling (Reusing Theme Style) */
.btn-theme-submit {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-theme-submit:hover {
    background-color: var(--accent)!important;
    border-color:var(--accent) !important;
}





/* --- Reach Section Styles  --- */

.reach {
    
    padding: 40px 0; 
    
    /* theme 1 (Background & Overlay) */
    background: linear-gradient(rgba(12, 43, 78, 0.9), rgba(12, 43, 78, 0.9)), 
        url('./images/get\ in\ touch.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

/* Heading Style */
.reach-heading {
    color: white !important;
    padding: 0 8px;
    font-size: 2rem; 
}

/* Form Styles */
.contactForm {
    
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contactForm .input {
    border: none !important;
    border-radius: 4px !important;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contactForm .label {
    color: white !important;
    font-weight: 600;
}

.contactForm .btn-outline-light {
    color: white;
    border-color: white;
    font-weight: 600;
    width: auto; 
}

.contactForm .btn-outline-light:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}

/* Full Width Button for better mobile experience */
.btn-full-width {
    width: 100%;
}

/* Right Info Styles */
.reach .info {
    color: var(--light-bg) !important;
    font-size: 1.2rem;
    padding-left: 15px;
    padding-right: 15px;
}




/* --- Global Variables --- */


/* --- 1. Main Section (Overlap and Z-Index) --- */
.statistics-section-overlap-final {
    
    margin-top: -50px; 
    position: relative; 
    z-index: 50; 
    background: transparent;
}

/* 2. White Card Container (stats-card-bg) */
.statistics-container {
   margin-bottom: 50px;
    max-width: 90%; 
}

.stats-card-bg {
    background-color: white; 
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); 
    position: relative;
    overflow: hidden; 
    padding: 40px 0; 
}

/* 3. Dotted Background Pattern */
.dotted-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
     
}

.stats-row {
    position: relative; 
    z-index: 2; 
    margin: 0;
    padding: 0;
}

.stat-number-minimal {
    font-size: 3rem; 
    font-weight: 800 !important; 
    color: var(--secondary); 
    margin-bottom: 0;
    line-height: 1.1;
}

.stat-label-minimal {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 5px;
}




/*_____footer Styling _____*/

.custom-footer {
    /* background: #f2f2f2; */
    background: var(--light-bg);
    color: #000;
    font-size: 15px;
}

.custom-footer a {
    color: var(--primary);
    text-decoration: none;
}

.custom-footer a:hover {
    text-decoration: underline;
}

.custom-footer h5 {
    color: var(--primary);
    font-weight: 700;
}

.footer-logo {
    width: 170px;
}

.social-icons i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--primary);
}

.social-icons i:hover {
    color: var(--accent);
}



 .custom-footer hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.15);
}

footer hr {
    border: 1;
    border-top: 1px solid #999; /* dark grey visible line */
    margin: 25px 0;
    opacity: 1; /* ensure visibility */
}


/* services style */

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-box p {
    font-size: 14px;
    color: #555;
}

/* WhatsApp Floating Button */

.whatsapp_float img,.chatbot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.whatsapp_float:hover img {
    transform: scale(1.1);
}







.wa-button {
    position: fixed;
    bottom: 20px;
    /* WhatsApp is lowest*/
    right: 20px;
    /* background: #25D366;
    color: #fff; */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    /* font-size: 30px;
    display: flex; */
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.3); */
    z-index: 999;
    /* Below chatbot */
}

/* Chatbot floating Icon */
.chatbot-icon {
    position: fixed;
    bottom: 90px;
    /*  Chatbot placed 70px ABOVE WhatsApp */
    right: 20px;
    /* background: #007bff;
    color: #fff; */
    /* font-size: 28px; */
    width: 55px;
    height: 55px;
    /* padding: 15px; */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    /*Higher than WhatsApp*/
}

.chatbot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chatbot-icon:hover img{
    transform: scale(1.1);
}



/* Chatbot Window */
#chatbot-window {
    width: 320px;
    height: 420px;
    background: white;
    position: fixed;
    bottom: 160px;
    /* Opens above chatbot icon */
    right: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
}

#chatbot-header {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
}

#chatbot-body {
    padding: 10px;
    overflow-y: auto;
    height: 350px;
}

.chat-option {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: none;
    border-radius: 8px;
    background: #f0f0f0;
    cursor: pointer;
}

.chat-option:hover {
    background: #e0e0e0;
}

#chatbot-answer {
    margin-top: 15px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 8px;
    display: none;
}

/* Smooth Animation */
/* #chatbot-icon,
.wa-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
} */

/* Hover Pop Effect */
/* #chatbot-icon:hover,
.wa-button:hover {
    transform: scale(1.15);
     Zoom in 15% 
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
} */

/* ----------------------------- */
/* RESPONSIVE CHATBOT + WHATSAPP */
/* ----------------------------- */

/* Large phones & tablets */
@media (max-width: 768px) {
    #chatbot-window {
        width: 280px;
        height: 380px;
        bottom: 150px;
        right: 15px;
    }

    #chatbot-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
        bottom: 85px;
        right: 15px;
        font-size: 24px;
    }

    .wa-button {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}

/* Small mobile screens (Galaxy Fold, iPhone SE, 360px width) */
@media (max-width: 480px) {
    #chatbot-window {
        width: 250px;
        height: 350px;
        bottom: 140px;
        right: 12px;
    }

    #chatbot-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
        bottom: 80px;
        right: 12px;
        font-size: 22px;
    }

    .wa-button {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 12px;
        right: 12px;
    }
}

/* Ultra-small devices (old phones, 320px) */
@media (max-width: 360px) {
    #chatbot-window {
        width: 220px;
        height: 330px;
        bottom: 130px;
        right: 10px;
    }

    #chatbot-icon {
        width: 42px;
        height: 42px;
        padding: 9px;
        bottom: 75px;
        right: 10px;
        font-size: 20px;
    }

    .wa-button {
        width: 42px;
        height: 42px;
        font-size: 22px;
        bottom: 10px;
        right: 10px;
    }
}
/* count running */
/* ensure inline elements align nicely */
.stat-number-minimal .count { display:inline-block; min-width:3ch; }
.stat-number-minimal .suffix { margin-left:4px; font-weight:600; }
