body{
    margin:0;
    font-family: Arial, sans-serif;
    overflow-y: scroll;
}

/* LOGO IMAGE STYLE */
.logo img{
    height:60px;
    width:auto;
    object-fit:contain;
    display:block;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    display:flex;
    align-items:center;
    color:#fff;
}

.left-info{
    width:100%;
    background:#0d1b2a;
    padding:10px 20px;

    display:flex;
    align-items:center;

    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.left-side{
    display:flex;
    gap:20px;
    color:white;
}

.address{
    margin-left:auto !important;
    margin-right:40px !important;
    color: white;
}


/* All text spacing */
.left-info span{
    margin-right:20px;
    white-space:nowrap;
    color: white; !important;
}





/* =========================
   NAVBAR
========================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo{
    font-weight:bold;
    font-size:20px;
}

/* MENU */
.menu{
    list-style:none;
    display:flex;
    gap:25px;
    margin:0;
    padding:0;
}

.menu li{
    position:relative;
}

.menu li a{
    text-decoration:none;
    color:#000;
    display:block;
    padding:8px 10px;
    white-space:nowrap;
}

/* =========================
   DROPDOWN (FIXED + SCROLL)
========================= */
.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;

    background:#1d3557;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:8px 0;
    min-width:260px;

    /* 🔥 IMPORTANT FIX FOR LONG LIST */
    max-height:420px;
    overflow-y:auto;

    z-index:1000;
    border-radius:8px;
}

/* scrollbar style */
.dropdown-menu::-webkit-scrollbar{
    width:6px;
    
}
.dropdown-menu::-webkit-scrollbar-track {
    background: #1d3557;
}
.dropdown-menu::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
}

.dropdown-menu li{
    padding:0;
}

.dropdown-menu li a{
    display:block;
    padding:10px 15px;
    font-size:14px;
    color:white;
}

.dropdown-menu li a:hover{
    background:#f1f1f1;
    color: black;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu{
    display:block;
}

/* ICON */
.dropdown i{
    margin-left:5px;
    font-size:12px;
}

/* =========================
   OPTIONAL FIX: RIGHT SIDE DROPDOWN ALIGN
========================= */
.menu li:last-child .dropdown-menu{
    left:auto;
    right:0;
}

/* =========================
   RESPONSIVE (BASIC SAFE)
========================= */
@media(max-width:768px){
    .top-header{
        display:none;
    }
}

/* HIDE TOGGLE ON DESKTOP */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* =========================
   MOBILE VIEW
========================= */
@media(max-width:768px){

    /* TOP HEADER HIDE */
    .top-header{
        display:none;
    }

    /* NAVBAR CLEAN */
    .navbar{
        justify-content:space-between;
    }

    /* SHOW MENU ICON */
    .menu-toggle{
        display:block;
    }

    /* MENU SIDE PANEL */
    .menu{
        position:fixed;
        top:0;
        right:-100%;
        width:250px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        gap:0;
        padding-top:70px;
        box-shadow:-5px 0 20px rgba(0,0,0,0.2);
        transition:0.4s ease;
        z-index:1000;
    }

    /* ACTIVE MENU */
    .menu.active{
        right:0;
    }

    .menu li a{
        padding:15px 20px;
        border-bottom:1px solid #eee;
    }

    /* DROPDOWN FIX */
    .dropdown-menu{
        position:relative;
        box-shadow:none;
        background:#f9f9f9;
    }
}





/* =========================
   MOBILE NAVBAR FIX
========================= */
@media(max-width:768px){

    /* MENU ICON */
    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        background:#00aaff;
        color:#fff;
        border-radius:8px;
        cursor:pointer;
        z-index:2001;
        position:relative;
    }

    .menu-toggle i{
        font-size:22px;
        transition:0.3s;
    }

    /* CHANGE ICON TO CROSS */
    .menu-toggle.active i::before{
        content:"\f00d"; /* Font Awesome cross */
    }

    /* MOBILE MENU */
    .menu{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding-top:80px;
        overflow-y:auto;
        transition:0.4s ease;
        z-index:2000;
        box-shadow:-5px 0 20px rgba(0,0,0,0.15);
    }

    /* ACTIVE MENU */
    .menu.active{
        right:0;
    }

    /* MENU LINKS */
    .menu li{
        width:100%;
    }

    .menu li a{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px 20px;
        border-bottom:1px solid #eee;
        font-size:15px;
    }

    /* DROPDOWN */
    .dropdown-menu{
        display:none;
        position:static;
        width:100%;
        background:#f8fbff;
        box-shadow:none;
        padding:0;
    }

    /* SHOW DROPDOWN ON MOBILE */
    .dropdown:hover .dropdown-menu{
        display:none;
    }

    .dropdown:focus-within .dropdown-menu{
        display:block;
    }

    /* CLICK OPEN DROPDOWN */
    .dropdown.active .dropdown-menu{
        display:block;
    }

    /* SUBMENU LINKS */
    .dropdown-menu li a{
        padding:14px 30px;
        font-size:14px;
        border-bottom:1px solid #eaeaea;
        color:#333;
    }

    .dropdown-menu li a:hover{
        background:#eaf6ff;
        color:#00aaff;
    }

    /* SCROLL FIX */
    body.menu-open{
        overflow:hidden;
    }

    /* NAVBAR */
    .navbar{
        padding:15px;
        position:sticky;
        top:0;
        z-index:999;
        background:#fff;
    }

    /* LOGO */
    .logo{
        font-size:22px;
        font-weight:bold;
    }
}
/* =================================================footer============================================= */

.footer {
    position: relative;
    background: #0d1b2a;
    color: #fff;
    padding: 120px 20px 30px;
    overflow: hidden;
}

/* First layer (diagonal from left) */
.footer::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 150px;

    background: #0077b6;

    /* left side slant */
    clip-path: polygon(0 100%, 100% 20%, 100% 100%, 0% 100%);
}

/* Second layer (curve from right) */
.footer::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 110px;

    background: rgba(0,180,216,0.6);

    /* smooth curve from right */
    clip-path: ellipse(60% 100% at 80% 0%);
}

/* Layout */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 220px;
}

/* Heading */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* stylish dot under heading */
.footer-col h3::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* Text */
.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

/* hover */
.footer-col ul li a:hover {
    color: #00d4ff;
    letter-spacing: 0.5px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #aaa;
}


/*==================================================== Slider=========================================== */


/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* IMAGE FIX */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* ⭐ MAIN FIX */
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px){
    .slider{
        height: 350px;
    }

    .slide img{
        object-position: center;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px){
    .slider{
        height: 220px;
    }

    .slide img{
        object-fit: cover;
        object-position: center;  /* ⭐ ensures no left cut */
    }
}
/* Content on image */
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: #00b4d8;
}



.features-section{
    padding:80px 20px;
    background: #f7f9fc;
    text-align:center;
}

.features-section h2{
    font-size:34px;
    font-weight:800;
    font-family: 'Poppins', sans-serif;
    color:#1d3557;
    letter-spacing:1px;
    margin-bottom:10px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

/* Left line */
.features-section h2::before{
    content:"";
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
    border-radius:10px;
}

/* Right line */
.features-section h2::after{
    content:"";
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#1d3557,#00aaff);
    border-radius:10px;
}


/* ✨ SUB HEADING NEW STYLE */
.sub-heading{
    font-size:18px;
    font-family: 'Poppins', sans-serif;
    color:#5a6b7c;
    margin-top:20px;
    letter-spacing:0.5px;
}

.feature-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0d1b2a,#00aaff);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.feature-card h3{
    margin-bottom:10px;
    color:#0d1b2a;
}

.feature-card p{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}

.feature-card a{
    text-decoration:none;
    color:#00aaff;
    font-weight:bold;
}





/* SECTION */
.tech-story{
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(315deg, #0f172a, #1e293b);
    overflow: hidden;
    z-index: 1;
}

/* TOP SLANT */
.tech-story::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 120px;

    background: #ffffff;

    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: -1;
}

/* BOTTOM SLANT */
.tech-story::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 120px;

    background: #ffffff;

    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

/* CONTAINER */
.wrap{
    max-width: 1200px;
    width: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.text-side{
    flex: 1;
    color: #fff;
}

/* BADGE */
.badge{
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 14px;
    color: #38bdf8;
    margin-bottom: 20px;
}



/* PARAGRAPH */
.text-side p{
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* MINI CARDS */
.mini-cards{
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mini-card{
    width: 180px;          /* width kam */
    min-width: 250px;
    padding: 10px 12px;    /* height kam */
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.mini-card:hover{
    transform: translateY(-5px);
}

.mini-card h4{
    color: #fff;
    margin-bottom: 5px;
    font-size: 15px;
}

.mini-card p{
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
}
/* BUTTON */
.btn{
    display: inline-block;
    padding: 14px 30px;
    background: #0ea5e9;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover{
    background: #0284c7;
}

/* RIGHT SIDE */
.image-side{
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE BOX */
.img-box img{
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* MAIN IMAGE */
.img-box.main{
    width: 420px;
}

/* SMALL IMAGE */
.img-box.small{
    width: 220px;
    position: absolute;
    bottom: -40px;
    left: -40px;
    border: 8px solid #0f172a;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width: 992px){

    .wrap{
        flex-direction: column;
        text-align: center;
    }

    .text-side h2{
        font-size: 38px;
    }

    .mini-cards{
        justify-content: center;
    }

    .image-side{
        margin-top: 40px;
    }

    .img-box.small{
        left: 0;
        bottom: -30px;
    }
}

@media(max-width: 576px){

    .text-side h2{
        font-size: 30px;
    }

    .img-box.main{
        width: 100%;
    }

    .img-box.small{
        width: 160px;
    }
}






.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:50px;

    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;

    color:#fff;
    background:linear-gradient(315deg,#00aaff,#1d3557);

    box-shadow:0 8px 20px rgba(0,170,255,0.25);

    position:relative;
    overflow:hidden;
}

/* glowing animated effect */
.badge::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle,rgba(255,255,255,0.3),transparent 60%);
    transform:rotate(25deg);
    animation:shine 3s infinite linear;
}

@keyframes shine{
    0%{ transform:translateX(-100%) rotate(25deg); }
    100%{ transform:translateX(100%) rotate(25deg); }
}

/* hover effect */
.badge:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(0,170,255,0.35);
}


.text-side h2{
    font-size:38px;
    color:white;
    margin-bottom:15px;
}

.text-side p{
    color:#555;
    margin-bottom:25px;
    font-size: 16px;
}

/* MINI CARDS */
.mini-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:25px;
}

.mini-card{
    background:#fff;
    padding:15px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    opacity:0;
    animation:fadeUp 0.6s ease forwards;
}

.mini-card:nth-child(1){ animation-delay:0.2s; }
.mini-card:nth-child(2){ animation-delay:0.4s; }

.mini-card:hover{
    transform:translateY(-6px);
}

.mini-card h4{
    margin-bottom:5px;
    color:#0d1b2a;
    font-size: 15px;
}

.mini-card p{
    font-size:13px;
    color:#666;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:10px 18px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* RIGHT SIDE */
.image-side{
    flex:1;
    position:relative;
    animation:fadeUp 1s ease forwards;
}

/* MAIN IMAGE */
.img-box.main{
    width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.img-box.main img{
    width:100%;
    display:block;
    transition:0.5s ease;
}

.img-box.main:hover img{
    transform:scale(1.05);
}


/* RIGHT SIDE */
.image-side{
    flex:1;
    position:relative;
    animation:fadeUp 1s ease forwards;
}

/* MAIN IMAGE BOX */
.img-box.main{
    width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);

    position:relative;
    animation:imgFloat 4s ease-in-out infinite;
}

/* IMAGE */
.img-box.main img{
    width:100%;
    display:block;
    transition:0.6s ease;
}

/* HOVER ZOOM + BRIGHTNESS */
.img-box.main:hover img{
    transform:scale(1.07);
    filter:brightness(1.1);
}

/* FLOATING ANIMATION */
@keyframes imgFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* SOFT GLOW EFFECT */
.img-box.main::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 30%, rgba(0,170,255,0.15), transparent 60%);
    pointer-events:none;
    opacity:0;
    transition:0.5s;
}

.img-box.main:hover::after{
    opacity:1;
}

/* SMALL IMAGE */
.img-box.small{
    position:absolute;
    bottom:-25px;
    left:-25px;
    width:220px;
    height:160px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 35px rgba(0,0,0,0.25);
    border:6px solid #fff;
    background:#fff;
    animation:floatImg 3s ease-in-out infinite;
}

.img-box.small img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ANIMATIONS */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatImg{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-10px); }
    100%{ transform:translateY(0px); }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLET */
@media(max-width:1024px){
    .wrap{
        gap:40px;
    }

    .text-side h2{
        font-size:30px;
    }

    .img-box.small{
        width:180px;
        height:140px;
        bottom:-15px;
        left:-15px;
    }
}

/* MOBILE */
@media(max-width:768px){
    .wrap{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .text-side{
        order:2;
    }

    .image-side{
        order:1;
    }

    .mini-cards{
        grid-template-columns:1fr;
    }

    .img-box.small{
        position:relative;
        width:100%;
        height:200px;
        margin-top:15px;
        bottom:auto;
        left:auto;
        border-radius:14px;
    }
}

/* SMALL MOBILE */
@media(max-width:480px){
    .tech-story{
        padding:60px 15px;
    }

    .text-side h2{
        font-size:24px;
    }

    .badge{
        font-size:12px;
    }

    .btn{
        width:100%;
        text-align:center;
    }
}






.service-section{
    padding:20px 20px;
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}

/* COMMON BLOB */
.service-section::before,
.service-section::after{
    content:"";
    position:absolute;
    z-index:0;
    opacity:0.22;
    filter:blur(8px);
    border:2px solid rgba(0,170,255,0.25);  /* 🔥 border added */
}

/* TOP LEFT ORGANIC SHAPE */
.service-section::before{
    width:220px;
    height:180px;
    background:#a6dcff;
    top:60px;
    left:60px;

    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    animation:blobMove1 12s ease-in-out infinite;
}

/* BOTTOM RIGHT ORGANIC SHAPE */
.service-section::after{
    width:260px;
    height:200px;
    background:#c2d4ff;
    bottom:60px;
    right:60px;

    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation:blobMove2 15s ease-in-out infinite;
}

/* ANIMATION 1 */
@keyframes blobMove1{
    0%   { transform:translate(0,0) rotate(0deg); }
    50%  { transform:translate(40px,30px) rotate(10deg); }
    100% { transform:translate(0,0) rotate(0deg); }
}

/* ANIMATION 2 */
@keyframes blobMove2{
    0%   { transform:translate(0,0) rotate(0deg); }
    50%  { transform:translate(-50px,-40px) rotate(-12deg); }
    100% { transform:translate(0,0) rotate(0deg); }
}

/* CONTENT ABOVE */
.service-section *{
    position:relative;
    z-index:1;

}

/* HEADING */
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    font-weight:800;
    color:#1d3557;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.section-title h2::before,
.section-title h2::after{
    content:"";
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
}

/* GRID WRAPPER */
.service-grid{
    max-width:1000px;
    margin:auto;
}


.service-grid::before{
    content:"";
    display:block;
    height:1px;
    background:#ddd;
    margin-bottom:20px;
}

.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:140px;              /* 🔥 left-right gap increase */
    align-items:start;
    position:relative;
    padding:20px 0;
}

/* CENTER VERTICAL SEPARATION LINE (optional but premium) */
.service-row::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:1px;
    background:#ddd;
    transform:translateX(-50%);
    opacity:0.6;
}

/* push right side slightly more */
.service-row .service-item:last-child{
    padding-left:40px;
}

/* ITEM */
.service-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    flex:1;
}




/* ROW LAYOUT */
.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;   /* 🔥 more spacing between left & right */
    align-items:start;
    margin-bottom:25px;
}

/* LEFT ITEM */
.service-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

/* RIGHT ITEM PUSH (extra nudge) */
.service-row .service-item:last-child{
    padding-left:30px;   /* 🔥 pushes right content further */
}

/* ICON SIZE */
.service-item i{
    font-size:32px;
    color:#00aaff;
}

/* TEXT */
.service-item h4{
    margin:0;
    font-size:18px;
    color:#1d3557;
}

.service-item p{
    margin:5px 0 0;
    font-size:14px;
    color:#555;
}

/* RESPONSIVE */
@media(max-width:768px){
    .service-row{
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-row .service-item:last-child{
        padding-left:0;
    }
}

.service-item i{
    font-size:50px;   /* 🔥 bigger icon */
    color:#00aaff;
    margin-top:5px;
    flex-shrink:0;
    transition:0.3s ease;
}

/* optional hover effect */
.service-item:hover i{
    transform:scale(1.2);
    color:#1d3557;
}

/* TEXT */
.service-item h4{
    margin:0;
    font-size:18px;
    color:#1d3557;
}

.service-item p{
    margin:5px 0 0;
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* HORIZONTAL LINE */
.service-section hr{
    border:none;
    height:1px;
    background:#ddd;
    margin:20px 0;
}

/* RESPONSIVE */
@media(max-width:768px){
    .service-row{
        flex-direction:column;
        gap:20px;
    }

    .section-title h2{
        font-size:28px;
        flex-wrap:wrap;
    }

    .section-title h2::before,
    .section-title h2::after{
        width:40px;
    }
}    





.portfolio-section{
    padding:20px 10px;
    background:#f7f9fc;
    text-align:center;
}


.section-head{
    text-align:center;
    margin-bottom:30px;
}

/* HEADING */
.section-head h2{
    font-size:38px;
    font-weight:800;
    color:#1d3557;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

/* LEFT + RIGHT LINE */
.section-head h2::before,
.section-head h2::after{
    content:"";
    width:70px;
    height:3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
    border-radius:10px;
}

/* SUB TEXT */
.section-head p{
    max-width:600px;
    margin:10px auto 0;
    color:#666;
    font-size:20px;
    line-height:1.6;
}

/* buttons */
.filter-btns{
    margin-bottom:30px;
}

.filter-btns button{
    padding:8px 16px;
    margin:5px;
    border:none;
    background:#fff;
    cursor:pointer;
    border-radius:20px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.filter-btns button.active,
.filter-btns button:hover{
    background:#00aaff;
    color:#fff;
}



/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    max-width:1100px;
    margin:auto;
}

/* ITEM */
.gallery .item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

/* IMAGE */
.gallery img{
    width:100%;
    border-radius:12px;
    transition:0.4s;
    height: 300px;
}

/* OVERLAY */
.overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.7);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:20px;

    opacity:0;
    transition:0.4s;
}

/* TITLE */
.overlay h3{
    color:#00aaff;
    font-size:24px;
    margin-bottom:10px;
}

/* TEXT */
.overlay p{
    color:#ddd;
    font-size:14px;
    line-height:1.6;
}

/* HOVER EFFECT */
.gallery .item:hover .overlay{
    opacity:1;
}

.gallery .item:hover img{
    transform:scale(1.08);
}

/* HIDE */
.hide{
    display:none;
}

/* RESPONSIVE */
@media(max-width:768px){

    .gallery{
        grid-template-columns:1fr;
    }

}






.stats-section{
    padding:90px 20px;
    background:#0d1b2a;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.stat-circle{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50%;
    width:180px;
    height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    margin:auto;
}

.stat-circle i{
    font-size:22px;
    color:#00aaff;
    margin-bottom:8px;
}

.stat-circle h2{
    font-size:28px;
    color:#00aaff;
    margin:5px 0;
}

.stat-circle p{
    font-size:31px;
    color:#ccc;
}











.testimonials{
    padding:100px 20px;
    background:#fff;
}

/* heading */
.testimonials .section-head{
    text-align:center;
    margin-bottom:40px;
}

.testimonials .section-head h2{
    font-size:40px;
    font-weight:800;
    color:#1d3557;
    position:relative;
    display:inline-block;
    padding:0 50px;
}

.testimonials .section-head h2::before,
.testimonials .section-head h2::after{
    content:"";
    position:absolute;
    top:50%;
    width:35px;
    height:3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
    transform:translateY(-50%);
}

.testimonials .section-head h2::before{ left:0; }
.testimonials .section-head h2::after{ right:0; }

.testimonials .section-head p{
    color:#666;
    margin-top:10px;
}

/* SCROLL CONTAINER */
.testimonial-scroll{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding:20px 10px;
    scroll-snap-type:x mandatory;
}

/* hide scrollbar */
.testimonial-scroll::-webkit-scrollbar{
    display:none;
}

/* CARD */
.testimonial-card{
    min-width:300px;
    flex:0 0 auto;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    scroll-snap-align:center;
    transition:0.3s;
    position:relative;
}

/* hover */
.testimonial-card:hover{
    transform:translateY(-8px);
}

/* quote */
.testimonial-card::before{
    content:"❝";
    font-size:50px;
    position:absolute;
    top:10px;
    right:15px;
    color:#00aaff;
    opacity:0.15;
}

/* name */
.testimonial-card h4{
    font-size:18px;
    color:#0d1b2a;
}

/* date */
.testimonial-card span{
    font-size:12px;
    color:#888;
}

/* text */
.text{
    margin-top:12px;
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* read more */
.read-more{
    margin-top:15px;
    background:none;
    border:none;
    color:#00aaff;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
}

.read-more i{
    transition:0.3s;
}

.read-more:hover i{
    transform:translateX(5px);
}







.bottom-hero{
    height:100vh;
    background:url("../img/index1.png") no-repeat center/cover;
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    overflow:hidden;
}

/* dark overlay */
.bottom-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}


.half-circle-card{
    width:650px;        /* 👈 increased */
    height:325px;       /* 👈 half of width for balance */

    background:#fff;

    border-radius:325px 325px 0 0;  /* 👈 keep perfect half circle */

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:0 -15px 50px rgba(0,0,0,0.3);

    margin-bottom:0;
}

/* icon bigger */
.half-circle-card i{
    font-size:60px;
    color:#00aaff;
    margin-bottom:10px;
}

/* heading bigger */
.half-circle-card h2{
    font-size:28px;
    color:#1d3557;
    margin-bottom:10px;
}

/* text */
.half-circle-card p{
    font-size:15px;
    color:#555;
    padding:0 60px;
}


.split-contact{
    min-height:30%;
    display:flex;
    background:linear-gradient(120deg,#0d1b2a 50%, #f7f9fc 50%);
    padding:80px 20px;
}

/* LEFT SIDE */
.split-left{
    flex:1;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px;
}

.split-left h2{
    font-size:40px;
    margin-bottom:15px;
}

.split-left p{
    color:#cbd5e1;
    line-height:1.6;
    margin-bottom:20px;
}

.split-left ul{
    list-style:none;
    padding:0;
}

.split-left ul li{
    margin:10px 0;
    font-size:15px;
}

/* RIGHT SIDE */
.split-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* FLOATING CARD */
.contact-card{
    width:350px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
    transform:translateY(-20px);
}

.contact-card h3{
    margin-bottom:15px;
    color:#1d3557;
}

/* inputs */
.contact-card input,
.contact-card textarea{
    width:100%;
    margin-bottom:12px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
}

.contact-card textarea{
    height:80px;
    resize:none;
}

/* button */
.contact-card button{
    width:100%;
    padding:10px;
    border:none;
    background:#00aaff;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.contact-card button:hover{
    background:#0088cc;
}

/* RESPONSIVE */
@media(max-width:768px){
    .split-contact{
        flex-direction:column;
        text-align:center;
    }

    .contact-card{
        transform:none;
    }
}







/*================================================ about===================================================== */






/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

/* IMAGE */
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;  /* ⭐ IMPORTANT FIX */
}

/* =========================
   MOBILE FIX (MAIN SOLUTION)
========================= */
@media (max-width: 480px){

    .hero {
        height: 200px;
    }

    .hero img {
        object-fit: cover;
        object-position: center right; /* ⭐ shifts focus from left cut */
    }
}
/* Text container */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

/* Small label */
.hero-content span {
    display: inline-block;
    background: #1d3557;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Main heading */
.hero-content h1 {
    font-size: 50px;
    margin: 0;
    font-weight: 800;
    color: #ffffff;

    /* subtle shadow for visibility */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Breadcrumb box */
.hero-content p {
    margin-top: 12px;
    display: inline-block;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 7px 18px;
    font-size: 14px;
    border-left: 4px solid #1d3557;
    border-radius: 4px;
}

/* Link style */
.hero-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.hero-content a:hover {
    color: #1d3557;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 12px;
        padding: 5px 12px;
    }
}



/* Section */
.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h5 {
    display: inline-block;
    color: black;
    background: #e9f0f8;   /* light blue bg */
    border: 2px solid #1d3557;

    padding: 6px 15px;
    border-radius: 20px;

    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 6px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1d3557;
    white-space: nowrap;   /* 👈 ek hi line me rakhega */
}

/* Paragraph */
.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.services-grid div {
    background: #fff;
    padding: 12px;
    border-left: 4px solid #1d3557;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Features */
.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box .icon {
    font-size: 28px;
    color: #1d3557;
}

.feature-box h4 {
    margin: 0;
    font-size: 16px;
}

.feature-box p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #666;
}

/* RIGHT IMAGES */
.about-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: visible;
    padding-bottom: 100px;
}

.about-images {
        position: relative;
        display: inline-block;
        overflow: hidden;
    }



/* Main image */
.about-images .img1 {
    width: 80%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Main image hover */
.about-images .img1:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Overlap image */
.about-images .img2 {
    width: 75%;
    height: 300px;
    position: absolute;
    bottom: -60px;
    left: 30%;
    border-radius: 20px;
    border: 6px solid #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Overlap image hover */
.about-images .img2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}



/* 🔥 INFO CARDS (Rectangle Style) */
.info-card {
    min-width: 200px;
    height: 80px;   /* 👈 card बड़ा होगा */

    position: absolute;
    background: rgba(255,255,255,0.95);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;  /* 👈 यही main change है */
    align-items: flex-start; /* left align रहेगा */
    animation: bounce 2s infinite ease-in-out;
    
}

/* Icon */
.info-card img {
    width: 35px;
}


/* Text */
.info-card h3 {
    margin: 0;
    font-size: 38px;
    color: #1d3557;
}

.info-card p {
    margin-top: -18px;
    font-size: 15px;
    color: #555;
}

 
/* Positions */
.card1 {
    top: 20px;
    right: 0;
}

.card2 {
    bottom: 30px;
    left: 0;
}

/* Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 🔥 Responsive */

/* Tablet */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features {
        flex-direction: column;
    }

    .about-images {
        padding-bottom: 50px;
    }

    .about-images .img1 {
        width: 100%;
        height: 280px;
    }

    .about-images .img2 {
        position: static;
        width: 80%;
        margin-top: 20px;
        height: 220px;
    }

    .info-card {
        width: 90px;
        height: 90px;
    }

    .card1 {
        right: 20px;
        top: 10px;
    }

    .card2 {
        left: 20px;
        bottom: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
    }

    .info-card {
        width: 75px;
        height: 75px;
    }

    .info-card h3 {
        font-size: 14px;
    }

    .info-card p {
        font-size: 9px;
    }
}




/* Section */
.why-section {
    padding: 80px 20px;
    background: var(--atf-grey-4);
}

/* Container */
.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.why-image {
    flex: 1 1 45%;
    min-width: 280px;
}

.why-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

/* RIGHT CONTENT */
.why-content {
    flex: 1 1 45%;
    min-width: 280px;
}

/* Top tag */
.why-content h5 {
    display: inline-block;
    background: #1d3557;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 21px;
}

/* Heading */
.why-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1d3557;
    line-height: 1.3;
}

/* Paragraph */
.why-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Bottom layout */
.why-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Years box */
.years-box {
    background: #fff;
    padding: 20px 25px;
    border-left: 5px solid #1d3557;
    border-radius: 10px;
    min-width: 150px;
}

.years-box h3 {
    font-size: 40px;
    margin: 0;
    color: #1d3557;
}

.years-box span {
    font-weight: bold;
    display: block;
}

.years-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Small image */
.small-img img {
    width: 220px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* ================== RESPONSIVE ================== */

/* Large Tablet */
@media (max-width: 992px) {
    .why-image img {
        height: 350px;
    }

    .why-content h2 {
        font-size: 32px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-image img {
        height: 300px;
    }

    .why-bottom {
        justify-content: center;
        gap: 20px;
    }

    .small-img img {
        width: 180px;
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .why-section {
        padding: 50px 15px;
    }

    .why-content h2 {
        font-size: 24px;
    }

    .why-content p {
        font-size: 14px;
    }

    .years-box {
        padding: 15px;
    }

    .years-box h3 {
        font-size: 30px;
    }

    .small-img img {
        width: 140px;
        height: 90px;
    }
}



/* Section */
.features-section {
    padding: 40px 20px;
    background: var(--atf-grey-4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    background: var(--atf-grey-4);

}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #1d3557;
}

/* Row */
.features-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Item */
.feature-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 15px;
    align-items: flex-start;

    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;

    transition: 0.3s;
}

/* Hover */
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon */
.feature-item .icon {
    font-size: 52px;
    color: #1d3557;
}

/* Text */
.feature-item h4 {
    margin: 0;
    font-size: 20px;
    color: #1d3557;
}

.feature-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

/* 🔥 Responsive */

/* Tablet */
@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .features-section {
        padding: 50px 15px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h4 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 31px;
    }
}



/* Section */
.stats-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    min-height: 400px;
}

/* Background Image */
.stats-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;

    object-fit: cover;
    z-index: 0;

    opacity: 0.9;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

/* Container */
.stats-container {
    position: relative;
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;

    z-index: 2;
}

/* Circle box */
.stat-box {
    width: 180px;
    height: 180px;
    border: 3px solid #fff;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-align: center;

    transition: 0.4s ease;

    background: #1d3557;

    /* 🔥 animation support */
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 1s forwards;
}

/* Delay effect for each box */
.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.3s; }
.stat-box:nth-child(3) { animation-delay: 0.5s; }
.stat-box:nth-child(4) { animation-delay: 0.7s; }

/* Hover effect */
.stat-box:hover {
    background: lightslategray;
    transform: translateY(-8px) scale(1.05);
}

/* Number */
.stat-box h3 {
    margin: 0;
    font-size: 28px;
}

/* Text */
.stat-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Pop animation */
@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 🔥 Responsive */
@media (max-width: 768px) {
    .stat-box {
        width: 120px;
        height: 120px;
    }

    .stat-box h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 60px 10px;
    }

    .stat-box {
        width: 100px;
        height: 100px;
    }

    .stat-box h3 {
        font-size: 18px;
    }

    .stat-box p {
        font-size: 12px;
    }
}




/* Section */
.process-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h5 {
    color: #1d3557;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    color: #1d3557;
}

/* Container */
.process-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card */
.process-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* Hover */
.process-card:hover {
    transform: translateY(-10px);
    background: #1d3557;
    color: #fff;
}

/* Step circle */
.step {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: #1d3557;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Hover step */
.process-card:hover .step {
    background: #fff;
    color: #1d3557;
}

/* Text */
.process-card h3 {
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #555;
}

/* Hover text */
.process-card:hover p {
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .process-container {
        flex-direction: column;
        align-items: center;
    }
}


/* =========================
   GLOBAL FIX (IMPORTANT)
========================= */
*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* Prevent horizontal cut on mobile */
body{
    margin:0;
    font-family: Arial, sans-serif;
    overflow-x:hidden;
    overflow-y:scroll;
}


/* =========================
   HERO FIX
========================= */
.hero img{
    object-fit:cover;
    object-position:center;
}

@media(max-width:768px){
    .hero{
        height:220px;
    }

    .hero-content h1{
        font-size:26px;
    }
}


/* =========================
   ABOUT SECTION FIX
========================= */
.about-text h2{
    white-space:normal; /* ❗ prevent text cut */
}

@media(max-width:768px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-images{
        padding-bottom:20px;
    }

    .about-images .img2{
        position:static;
        width:100%;
        margin-top:15px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .features{
        flex-direction:column;
    }
}


/* =========================
   WHY SECTION FIX
========================= */
@media(max-width:768px){
    .why-container{
        flex-direction:column;
        text-align:center;
    }

    .why-image img{
        height:auto;
    }

    .why-bottom{
        justify-content:center;
    }
}


/* =========================
   FEATURES SECTION FIX
========================= */
@media(max-width:768px){
    .features-row{
        flex-direction:column;
    }
}


/* =========================
   STATS FIX
========================= */
.stats-container{
    gap:20px;
}

@media(max-width:768px){
    .stat-box{
        width:120px;
        height:120px;
    }
}


/* =========================
   PROCESS SECTION FIX
========================= */
@media(max-width:768px){
    .process-container{
        flex-direction:column;
    }
}


/* =========================
   DIGITAL SECTIONS FIX
========================= */
@media(max-width:768px){

    .dl-container h2,
    .edu-clean h2,
    .edu-angle-text h2,
    .content-box h2{
        font-size:24px;
        line-height:1.3;
    }

    .edu-angle{
        flex-direction:column;
        text-align:center;
    }

    .edu-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .solution-large{
        min-height:300px;
    }

    .solution-overlay h2{
        font-size:28px;
    }
}


/* =========================
   CLEAN GRID FIX
========================= */
@media(max-width:768px){
    .edu-clean-grid{
        flex-direction:column;
    }
}


/* =========================
   FUTURE LEADERS FIX
========================= */
@media(max-width:768px){
    .content-box h2{
        font-size:22px;
    }

    .content-box p{
        font-size:14px;
    }
}


/* =========================
   SMALL MOBILE (EXTRA SAFE)
========================= */
@media(max-width:480px){

    h1,h2,h3{
        word-break:break-word;
    }

    .about-text h2{
        font-size:22px;
    }

    .hero{
        height:180px;
    }

    .stat-box{
        width:100px;
        height:100px;
    }

}



/*================================================ Section internship============================================== */

/* Section */
.internship-section-5 {
    padding: 80px 20px;
    background: #fff;
}

/* Wrapper */
.intern-wrapper-2 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT IMAGES */
.intern-left {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.intern-left img {
    width: 70%;
    border-radius: 15px;
}

/* second image overlap */
.intern-left img:last-child {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 60%;
    border: 5px solid #fff;
}

/* RIGHT */
.intern-right {
    flex: 1;
    min-width: 300px;
}

.intern-right h5 {
    color: #1d3557;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.intern-right h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.intern-right p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Feature grid */
.feature-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-box {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #1d3557;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Button */
.intern-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1d3557;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .intern-wrapper-2 {
        flex-direction: column;
        text-align: center;
    }

    .intern-left img:last-child {
        position: static;
        margin-top: 15px;
        width: 80%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}




/* Section */
.open-intern-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Title */
.open-title {
    text-align: center;
    margin-bottom: 50px;
}

.open-title h5 {
    color: #1d3557;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.open-title h2 {
    font-size: 36px;
    color: #000;
}

/* Grid */
.intern-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.intern-card {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #1d3557;
    border-radius: 8px;

    font-size: 16px;
    color: #333;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    transition: 0.3s;
}

/* Hover */
.intern-card:hover {
    transform: translateY(-5px);
    background: #1d3557;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .intern-grid {
        grid-template-columns: 1fr;
    }

    .open-title h2 {
        font-size: 28px;
    }
}



/* Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(315deg, #1d3557, #457b9d);
    text-align: center;
    color: #fff;
}

/* Container */
.cta-container {
    max-width: 800px;
    margin: auto;
}

/* Small heading */
.cta-container h5 {
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Main heading */
.cta-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

/* Paragraph */
.cta-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eaeaea;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
    padding: 12px 25px;
    background: #fff;
    color: #1d3557;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

/* Secondary button */
.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #1d3557;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 28px;
    }
}



/* =========================
   GLOBAL SAFETY FIX
========================= */
.intern-left,
.intern-right{
    min-width:0;
}

.intern-left img{
    max-width:100%;
    height:auto;
}


/* =========================
   INTERNSHIP SECTION FIX
========================= */
@media (max-width: 992px){

    .intern-right h2{
        font-size:28px;
    }

    .intern-left img{
        width:80%;
    }
}


/* MOBILE FIX (IMPORTANT) */
@media (max-width: 768px){

    .intern-wrapper-2{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .intern-left{
        display:flex;
        flex-direction:column;
        align-items:center;
        position:relative;
    }

    /* first image */
    .intern-left img:first-child{
        width:90%;
    }

    /* second image fix */
    .intern-left img:last-child{
        position:static;
        width:80%;
        margin-top:15px;
        border:5px solid #fff;
    }

    .intern-right h2{
        font-size:24px;
    }

    .feature-grid1{
        grid-template-columns:1fr;
    }
}


/* =========================
   OPEN INTERNSHIP FIX
========================= */
@media (max-width: 768px){

    .intern-grid{
        grid-template-columns:1fr;
    }

    .intern-card{
        font-size:15px;
    }
}


/* =========================
   CTA SECTION FIX
========================= */
@media (max-width: 768px){

    .cta-container h2{
        font-size:26px;
        line-height:1.3;
    }

    .cta-container p{
        font-size:14px;
    }

    .cta-section{
        padding:70px 15px;
    }
}


/* =========================
   SMALL MOBILE FIX
========================= */
@media (max-width: 480px){

    .intern-right h2{
        font-size:20px;
    }

    .intern-right p{
        font-size:14px;
    }

    .cta-container h2{
        font-size:22px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}



/*================================================== requirement======================================== */

/* Section */
.requirement-section-2 {
    padding: 80px 20px;
    background: #fff;
}


/* Box */
.req-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Headings */
.req-box h5 {
    color: #1d3557;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.req-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1d3557;
}

/* Text */
.req-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Highlights grid */
.req-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

/* Items */
.req-item {
    background: #f8f9fa;
    padding: 12px;
    border-left: 4px solid #1d3557;
    border-radius: 5px;
    text-align: left;
    font-size: 14px;
    transition: 0.3s;
}

.req-item:hover {
    background: #1d3557;
    color: #fff;
}

/* Button */
.req-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1d3557;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.req-btn:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .req-highlights {
        grid-template-columns: 1fr;
    }

    .req-box h2 {
        font-size: 28px;
    }
}



/* Section */
.services-feature-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Title */
.services-feature-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-feature-title h5 {
    color: #1d3557;
    letter-spacing: 2px;
}

/* Grid */
.services-feature-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.services-feature-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services-feature-card i {
    font-size: 40px;
    color: #1d3557;
    margin-bottom: 15px;
}

.services-feature-card:hover {
    background: #1d3557;
    color: #fff;
    transform: translateY(-8px);
}

.services-feature-card:hover i {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .services-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-feature-grid {
        grid-template-columns: 1fr;
    }
}


/* Section */
.business-inquiry-section {
    padding: 80px 20px;
    background: linear-gradient(315deg, #1d3557, #457b9d);
}

/* Box */
.business-inquiry-box {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

/* Heading */
.business-inquiry-box h5 {
    text-align: center;
    color: #1d3557;
    letter-spacing: 2px;
}

.business-inquiry-box h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Row */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Inputs */
.form-row input,
.form-row select {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button */
.business-inquiry-box button {
    width: 100%;
    padding: 12px;
    background: #1d3557;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.business-inquiry-box button:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}








/* Section */
.client-slider {
    padding: 80px 20px;
    background: #f1f5f9;
    text-align: center;
}

.client-slider h2 {
    font-size: 32px;
    color: #0f172a;   /* new dark modern color */
    margin-bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Left line */
.client-slider h2::before {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #1d3557);
    border-radius: 5px;
}

/* Right line */
.client-slider h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1d3557, #00aaff);
    border-radius: 5px;
}

/* Slider */
.slider {
    overflow: hidden;
    width: 100%;
}

/* Track (IMPORTANT FIX) */
.track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll 18s linear infinite;
}

/* Logos */
.track img {
    width: 80px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION FIX */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}






/* SECTION */
.company-showcase{
background: linear-gradient(135deg, #083344, #0f172a);
    padding: 100px 8%;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;

        overflow: hidden;
    }

    /* LEFT */
    .company-content{
        flex: 1;
        color: #fff;
    }

    /* TAG */
    .company-tag{
        display: inline-block;
        color: #38bdf8;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    /* HEADING */
    .company-content h2{
        font-size: 54px;
        line-height: 1.2;
        margin-bottom: 22px;
        font-weight: 800;
    }

    /* TEXT */
    .company-content p{
        color: #cbd5e1;
        font-size: 16px;
        line-height: 1.8;
        max-width: 600px;
        margin-bottom: 35px;
    }

    /* BUTTON */
    .video-btn{
        display: inline-flex;
        align-items: center;
        gap: 12px;

        background: #00aaff;
        color: #fff;

        padding: 10px 25px;
        border-radius: 50px;

        text-decoration: none;
        font-weight: 500;

        transition: 0.3s;
    }

    /* ICON */
    .video-btn i{
        width: 38px;
        height: 28px;

        background: rgba(255,255,255,0.2);
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 14px;
    }

    /* HOVER */
    .video-btn:hover{
        background: #0284c7;
        transform: translateY(-5px);
    }

    /* RIGHT IMAGE */
    .company-image{
        flex: 1;
        text-align: center;
    }

    /* IMAGE */
    .company-image img{
        width: 100%;
        max-width: 520px;

        animation: floatImage 4s ease-in-out infinite;
    }

    /* FLOAT */
    @keyframes floatImage{
        0%{
            transform: translateY(0px);
        }
        50%{
            transform: translateY(-15px);
        }
        100%{
            transform: translateY(0px);
        }
    }

    /* RESPONSIVE */
    @media(max-width:991px){

        .company-showcase{
            flex-direction: column;
            text-align: center;
        }

        .company-content p{
            margin: auto auto 35px;
        }

        .company-content h2{
            font-size: 40px;
        }
    }





