/* =====================================
   CLICK SERVICES - MODERN CORPORATE THEME
   ===================================== */

:root{
    --primary:#003366;
    --secondary:#FFD700;
    --light:#f5f7fa;
    --card:#ffffff;
    --text:#333333;
    --shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.7;
}

/* =====================
   NAVBAR
   ===================== */

.navbar-custom{
    background:var(--primary);
    padding:18px 0;
    text-align:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.navbar-custom a{
    color:#fff;
    text-decoration:none;
    margin:0 20px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.navbar-custom a:hover{
    color:var(--secondary);
}

.active{
    color:var(--secondary) !important;
}

/* =====================
   DROPDOWN
   ===================== */

.dropdown{
    display:inline-block;
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    background:#fff;
    min-width:260px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    text-align:left;
}

.dropdown-content a{
    display:block;
    color:var(--primary);
    padding:14px 18px;
    margin:0;
    font-size:15px;
}

.dropdown-content a:hover{
    background:#f2f5fa;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* =====================
   MAIN CONTAINER
   ===================== */

.container-box,
.container{
    max-width:1200px;
    margin:50px auto;
    background:#fff;
    padding:60px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* =====================
   HEADINGS
   ===================== */

h1{
    color:var(--primary);
    text-align:center;
    font-size:52px;
    margin-bottom:30px;
    font-weight:700;
}

h2{
    color:var(--primary);
    margin-bottom:20px;
}

.section-title{
    text-align:center;
    color:var(--primary);
    margin-top:60px;
    margin-bottom:30px;
    font-size:42px;
}

/* =====================
   HERO IMAGE
   ===================== */

.hero-image,
.about-image,
.service-banner{
    width:100%;
    display:block;
    margin:30px auto;
    border-radius:15px;
    box-shadow:var(--shadow);
}
.intro-header{
    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.70),
    rgba(0,0,0,0.70)),
    url("../img/background.jpeg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    text-align:center;
    padding:50px 20px;
}
.logo{
    width:220px;
    max-width:90%;
    display:block;
    margin:20px auto;

    background:#ffffff;
    padding:10px 20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* =====================
   INTRO TEXT
   ===================== */

.intro,
.text-block{
    font-size:20px;
    line-height:1.9;
    text-align:center;
    max-width:1000px;
    margin:auto;
}


/* =====================
   HIGHLIGHT BOX
   ===================== */

.highlight-box{
    background:#eef5ff;
    border-left:6px solid var(--primary);
    padding:30px;
    border-radius:12px;
    margin-top:40px;
}

.highlight-box h3{
    color:var(--primary);
    margin-bottom:15px;
}

.highlight-box ul{
    line-height:2;
}

/* =====================
   SERVICE CARDS
   ===================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.service-card,
.service-box{
    text-decoration:none;
    color:#003366;
    font-size:20px;
    font-weight:600;
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.3s;
    border-top:5px solid #003366;
    cursor:pointer;
}

.service-box:hover{
    transform:translateY(-5px);
    background:#003366;
    color:#ffffff;
    text-decoration:none;
}

.service-card:hover,
.service-box:hover{
    transform:translateY(-5px);
}

.service-card h3{
    color:var(--primary);
    margin-bottom:15px;
}
.service-hero{
    background:
    linear-gradient(
    rgba(0,51,102,0.88),
    rgba(0,51,102,0.88)),
    url("../img/background.jpeg");

    background-size:cover;
    background-position:center;
    text-align:center;
    color:white;
    padding:100px 20px;
}

.service-hero h1{
    color:white;
    font-size:54px;
    margin-bottom:20px;
}

.service-hero p{
    font-size:24px;
    max-width:800px;
    margin:auto;
}


/* =====================
   ACHIEVEMENTS
   ===================== */

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
}

.achievement-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow);
}

.achievement-card h3{
    color:var(--primary);
    font-size:36px;
    margin-bottom:10px;
}

/* =====================
   CONTACT CARDS
   ===================== */

.contact-card{
    background:#fff;
    border-left:6px solid var(--primary);
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:var(--shadow);
}

.office-address{
    background:#eef5ff;
    border-left:6px solid var(--primary);
    padding:30px;
    border-radius:15px;
    margin-bottom:30px;
}

/* =====================
   BUTTONS
   ===================== */

.btn-primary{
    background:var(--primary);
    color:#fff;
    padding:12px 30px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
}

.btn-primary:hover{
    background:#00264d;
    color:#fff;
}
.logo{
    width:180px;
    max-width:90%;
    display:block;
    margin:30px auto 20px;
}

.company-name{
    text-align:center;
    color:#ffffff;
    font-size:60px;
    font-weight:800;
    text-shadow:0 4px 15px rgba(0,0,0,0.7);
    margin-bottom:10px;
}
.company-tagline{
    text-align:center;
    color:#ffd700;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.welcome-text{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
    font-size:24px;
    color:#ffffff;
    line-height:1.8;
}
.contact-section{
    text-align:center;
    margin-top:50px;
}

.contact-section a{
    display:inline-block;
    margin:10px 20px;
    color:#ffffff;
    font-size:24px;
    font-weight:600;
    text-decoration:none;
}

.contact-section a:hover{
    color:#FFD700;
}
.hero-buttons{
    margin-top:30px;
}

.hero-btn{
    background:#ffd700;
    color:#003366;
    padding:14px 30px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
}

.hero-btn:hover{
    background:white;
}
.contact-section a:hover{
    color:#ffd700;
}

/* WhatsApp Floating Button */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    border-radius:50%;
    text-align:center;
    line-height:65px;
    font-size:36px;
    z-index:9999;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:white;
}

.cta-btn{
    background:#FFD700;
    color:#003366;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    margin-top:25px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover{
    background:#ffcc00;
    color:#003366;
}
.service-box{
    cursor:pointer;
}

.copyright{
    text-align:center;
    color:rgba(255,255,255,0.75);
    font-size:14px;
    margin-top:20px;
}
/* =====================
   TRUST SECTION
   ===================== */

.stats-section{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1000px;
    margin:60px auto 40px;
}

.stat-box{
    background:rgba(255,255,255,0.95);
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.20);
    border-top:5px solid #003366;
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
}

.stat-box h3{
    color:#003366;
    font-size:42px;
    font-weight:700;
    margin-bottom:12px;
}

.stat-box p{
    color:#555;
    font-size:18px;
    margin:0;
    line-height:1.6;
}

.service-hero{
    background:
    linear-gradient(rgba(0,51,102,.85),
    rgba(0,51,102,.85)),
    url("../img/background.jpeg");

    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;

    padding:100px 20px;
}

.service-hero h1{
    color:white;
    font-size:56px;
    margin-bottom:15px;
}

.service-hero p{
    font-size:22px;
    max-width:900px;
    margin:auto;
}

/* =====================
   FOOTER
   ===================== */

footer{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:30px;
    margin-top:50px;
}

/* ABOUT PAGE */

.journey{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.journey-step{
    background:#003366;
    color:white;
    padding:15px 25px;
    border-radius:10px;
    font-weight:600;
}

.arrow{
    font-size:28px;
    color:#003366;
    font-weight:bold;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.choose-item{
    background:#eef5ff;
    padding:20px;
    border-radius:10px;
    font-size:18px;
    font-weight:500;
}

/* =====================
   MOBILE
   ===================== */

@media(max-width:768px){

    .navbar-custom a{
        margin:0 6px;
        font-size:14px;
    }

    .logo{
        width:160px;
    }

    .company-name{
        font-size:42px;
    }

    .company-tagline{
        font-size:18px;
    }

    .welcome-text{
        font-size:18px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .achievement-grid{
        grid-template-columns:1fr;
    }

    .service-box{
        font-size:18px;
    }

    .contact-section a{
        display:block;
        margin:12px 0;
        font-size:18px;
    }

    .dropdown-content{
        min-width:220px;
    }
    
   .whatsapp-float{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float img{
        width:30px;
        height:30px;
    }
    .stats-section{
        grid-template-columns:1fr;
    }
   .choose-grid{
        grid-template-columns:1fr;
    }

    .journey{
        flex-direction:column;
    }

    .arrow{
        transform:rotate(90deg);
    }


}