/* =============== GLOBAL RESET =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY CLEAN WHITE */
body {
    background: white;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
header {
    width: 100%;
    padding: 18px 50px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #dcdcdc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branding img {
    height: 48px;
    border-radius: 6px;
}

.branding .brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-container .brand-name:hover {
    color: #0d47a1;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #0d47a1;
}

/* RIGHT NAVIGATION LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #0d47a1;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #08306b;
    opacity: 0.7;
}

/* ================== HERO AREA ================== */
.home-hero {
    height: 90vh;
    background-image: url('assets/homepage.png'); /* your hero background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-inner h1 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-inner p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

button {
    background: rgba(255,255,255,0.25);
    border: 1px solid white;
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    opacity: 0.82;
}

/* =================== HIGHLIGHT BLOCK =================== */
.highlight-info {
    background: linear-gradient(to right, #f4f8ff, #eaf1ff);
    text-align: center;
    padding: 70px 12%;
    border-bottom: 1px solid #dce3ff;
}

.highlight-info h2 {
    font-size: 30px;
    color: #0d47a1;
    margin-bottom: 18px;
}

.highlight-info p {
    font-size: 18px;
    color: #23324a;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview-light {
    padding: 90px 12%;
    text-align: center;
}

.services-preview-light h2 {
    font-size: 32px;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 45px;
}

.cards-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-light {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: 0.3s ease;
}

.card-light:hover {
    border-color: #0d47a1;
    transform: translateY(-5px);
}

.card-light h3 {
    color: #0d47a1;
    font-size: 19px;
    margin-bottom: 10px;
}

.card-light img {
    width: 100%;
    border-radius: 6px;
}

/* ====================== FOOTER ====================== */
footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-top: 1px solid #dcdcdc;
    text-align: center;
    padding: 22px;
    font-size: 14px;
    color: #0d47a1;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 14px;
    }
    .nav-links {
        flex-direction: column;
        gap: 16px;
    }
    .cards-light {
        grid-template-columns: 1fr;
    }
    .hero-inner h1 {
        font-size: 34px;
    }
    .home-hero {
        height: 70vh;
    }
}

/* ================= SERVICE PAGE RESTORE ================= */

/* Hero Block */
.hero-block {
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

/* Explanation Block */
.explain-block {
    padding: 70px 11%;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
    border-top: 1px solid #d6e4ff;
    border-bottom: 1px solid #d6e4ff;
}

/* Services Section */
.services-section {
    padding: 65px 10%;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 45px;
    color: #0d47a1;
}

/* Card Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    border: 1px solid #e7e7e7;
    padding: 22px;
    border-radius: 10px;
    background: #f9f9f9;
    text-align: center;
    transition: 0.3s ease;
}


.card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #0d47a1;
}



/* Verticals Box Section */
.verticals-section {
    padding: 70px 10%;
    background: #e9f0ff;
    color: #1a1a1a;
}



.v-box {
    background: white;
    border: 1px solid #d8e1ff;
    border-radius: 10px;
    padding: 26px;
    transition: 0.3s ease;
}

.v-box:hover {
    border-color: #0d47a1;
    transform: translateY(-4px);
}

.v-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0d47a1;
}




.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* keep 2-wide for readability */
    gap: 32px;
    align-items: start; /* allow natural expansion */
}

.v-box {
    background: white;
    border: 1px solid #d8e1ff;
    border-radius: 10px;
    padding: 30px;
    display: block;        /* remove flex internal compression */
    min-height: auto;      /* allow auto height */
    height: auto !important;
    overflow: visible;     /* IMPORTANT: show full text */
}

.v-box p {
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: break-word;
    white-space: normal;
}



.contact-bar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.contact-bar span {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.35s ease;
    font-family: "Poppins", sans-serif;
}

/* HOVER EFFECT: Expand + reveal text */
.contact-bar:hover {
    width: 210px;
    padding: 14px 20px;
}

.contact-bar:hover span {
    opacity: 1;
    transform: translateX(0);
}

.site-footer {
    background: #0d47a1;
    color: white;
    padding: 55px 8% 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #dbe6ff;
    font-size: 14px;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-brand-link {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
}

/* Responsive */
@media(max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}
@media(max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}



.branding .brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.branding .brand-link img {
    height: 48px;
    border-radius: 6px;
}

.branding .brand-link .brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #0d47a1;
}

.branding .brand-link:hover .brand-name {
    color: #0d47a1;
    transition: 0.3s ease;
}

.card, .service-click {
    cursor: pointer;
    transition: 0.35s ease;
}

.card:hover, .service-click:hover {
    border-color: #0d47a1 !important;
    transform: translateY(-6px);
    box-shadow: 0px 6px 18px rgba(0, 60, 180, 0.15);
}

.card img, .service-click img {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    object-fit: cover;
}
.service-page {
    padding-top: 120px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    gap: 40px;
}

.service-header img {
    width: 100%;
    max-width: 430px;
    border-radius: 10px;
}

.service-text h1 {
    font-size: 34px;
    color: #0d47a1;
}

.service-block {
    padding: 70px 10%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-box {
    background: #eef4ff;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
}

.tech-section {
    padding: 70px 10%;
    background: #f6f8ff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tech-item {
    background: white;
    border: 1px solid #d6e4ff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
}

.case-section {
    padding: 70px 10%;
}

.case-card {
    margin-bottom: 26px;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 50px 0;
}

.contact-bar {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #0d47a1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
}

/* ================= FLOAT CONTACT CIRCLE ================= */
.contact-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    background: #0d47a1;
    border-radius: 50px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    overflow: hidden;
    width: 58px;         /* default circle */
    white-space: nowrap;
    z-index: 999;
}

.contact-float img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.contact-float span {
    color: white;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* EXPAND ON HOVER */
.contact-float:hover {
    width: 200px;        /* expands horizontally */
    padding: 14px 18px;
}

.contact-float:hover span {
    opacity: 1;
}



/* PRODUCT GRID */
.products-section { padding: 80px 12%; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.product-card {
    border:1px solid #e6ecff;
    background:white;
    border-radius:14px;
    padding:26px;
    text-align:center;
    cursor:pointer;
    box-shadow:0 3px 12px rgba(0,0,0,0.06);
    transition:.3s;
}
.product-card img {
    width:100%;
    height:220px;
    border-radius:10px;
    object-fit:cover;
}
.product-card h3 {
    margin:16px 0 8px;
    color:#0d47a1;
    font-size:18px;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow:0 6px 20px rgba(13,73,161,0.25);
    border-color:#0d47a1;
}

/* CTA */
.cta-block { text-align:center; padding:60px 0; }
.cta-block button {
    background:#0d47a1;
    color:white;
    border:none;
    padding:14px 34px;
    border-radius:8px;
    font-size:18px;
    transition:.3s;
}
.cta-block button:hover { transform:scale(1.1); }


.coming-btn {
    background: #aab7d4;
    cursor: default;
    border: none;
    padding: 14px 44px;
    border-radius: 10px;
    font-size: 19px;
    color: white;
    display: inline-flex;          /* Center inline */
    justify-content: center;       /* Center dots + text */
    align-items: center;
    gap: 4px;
    text-align: center;
}

.coming-text {
    font-weight: 600;
}

/* Dot animation */
.dot1, .dot2, .dot3 {
    font-weight: bold;
    display: inline-block;
    animation: blink 1.5s infinite;
    padding-left: 1px;
}

.dot2 { animation-delay: 0.3s; }
.dot3 { animation-delay: 0.6s; }

@keyframes blink {
    0%, 20%   { opacity: 0; }
    30%       { opacity: 1; }
    50%       { opacity: 0; }
    70%       { opacity: 1; }
    100%      { opacity: 0; }
}
