
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}
body{
    background:#ffffff;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 5%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}
.logo-box{
    display:flex;
    align-items:center;
    gap:10px;
}
.logo-box img{
    width:40px;
}
.logo-text{
    font-size:22px;
    font-weight:700;
    color:#111;
}
.logo-text span{
    background:linear-gradient(45deg,#4f46e5,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:32px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    font-size:15px;
    position:relative;
}

/* Underline hover */
.nav-links a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-5px;
    background:linear-gradient(45deg,#4f46e5,#06b6d4);
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* ===== BUTTON ===== */
.nav-btn a{
    text-decoration:none;
    padding:9px 22px;
    border-radius:30px;
    background:linear-gradient(45deg,#4f46e5,#06b6d4);
    color:#fff;
    font-weight:600;
    font-size:14px;
    box-shadow:0 6px 18px rgba(79,70,229,.25);
}

/* ===== HAMBURGER ===== */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===== TABLET ===== */
@media(max-width:1024px){

    .nav-links{
        gap:22px;
    }

    .nav-btn a{
        padding:8px 18px;
    }
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:75px;
        right:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        text-align:center;
        padding:25px 0;
        gap:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .mobile-btn{
        display:block;
    }
}

/* Hide mobile button desktop */
.mobile-btn{
    display:none;
}

.custom-shape-divider-top {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 226px;
}

.custom-shape-divider-top .shape-fill {
    fill: #2563eb;
}
/* ===== HERO SECTION FIXED ===== */
#one {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    gap: 20px;
}

.sub1, .sub2 {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub1 .text-center {
    text-align: left;
}

.sub1 h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sub1 h2 {
    font-size: 32px;
    color: #333;
}

.sub2 {
    background-image: url("images/abc.png"); /* tumhara image path */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 300px;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.highlight {
    background: linear-gradient(45deg,#4f46e5,#06b6d4);
    color: #fff;
    padding: 15px 12px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

/* ===== DIV2 ===== */
#div2 {
    width: 100%;
    background: linear-gradient(45deg, #2563eb, #38bdf8);
    text-align: center;
    padding: 20px 10px;
}
#div2 i {
    font-size: 2rem;
    color: white;
    font-weight: bolder;
}
.two-child {
    font-size: 1.5rem;
    color: white;
    font-weight: bolder;
    margin-top: 10px;
}

/* ===== MOBILE / TABLET ===== */
@media (max-width: 992px) {
    #one {
        flex-direction: column;
        padding: 40px 5%;
    }
    .sub1, .sub2 {
        flex: 1 1 100%;
        justify-content: center;
    }
    .sub1 .text-center {
        text-align: center;
    }
    .sub1 h1 { font-size: 28px; }
    .sub1 h2 { font-size: 22px; }
    .sub2 { min-height: 250px; margin-top: 20px; }
}

@media (max-width: 576px) {
    #one { padding: 30px 10px; }
    .sub1 h1 { font-size: 22px; }
    .sub1 h2 { font-size: 18px; }
    .sub2 { min-height: 180px; margin-top: 15px; }
    .highlight { font-size: 12px; padding: 8px 6px; }
}

/* ===== SECTION ===== */
.feature-section{
    width:100%;
    padding:80px 8%;
    display:flex;
    gap:50px;
    align-items:center;
}

/* ===== LEFT ===== */
.feature-left{
    width:50%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ===== BOX ===== */
.feature-box{
    display:flex;
    gap:18px;
    padding:20px;
    border-radius:14px;
    background:#f9fbff;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-6px);
}
.icon{
    font-size:26px;
    min-width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:linear-gradient(45deg,#2563eb,#38bdf8);
    color:#fff;
}
.content h3{
    font-size:18px;
    margin-bottom:6px;
}

.content p{
    font-size:14px;
    color:#555;
}
.feature-right{
    width:50%;
    text-align:center;
}
.feature-right img{
    width:100%;
    max-width:420px;
}
@media(max-width:992px){
.feature-section{
    flex-direction:column;
    text-align:center;
}
.feature-left,
.feature-right{
    width:100%;
}
.feature-box{
    text-align:left;
}
}
@media(max-width:576px){
.feature-section{
    padding:60px 6%;
}
.feature-box{
    flex-direction:column;
    text-align:center;
    align-items:center;
}
.icon{
    margin-bottom:8px;
}
.content h3{
    font-size:16px;
}
.content p{
    font-size:13px;
}
.feature-right img{
    max-width:280px;
}
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
.two-column-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9; /* subtle background */
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.two-column-section .content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.two-column-section .content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0099ff;
    line-height: 1.3;
}

.two-column-section .content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}
.two-column-section .image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.two-column-section .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.two-column-section .image img:hover {
    transform: scale(1.03);
}
@media (max-width: 992px) {
    .two-column-section {
        flex-direction: column;
        text-align: center;
    }
    .two-column-section .image {
        text-align: center;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .two-column-section .content h2 {
        font-size: 26px;
    }
    .two-column-section .content p {
        font-size: 15px;
    }
    .two-column-section .content button {
        width: 100%;
    }
}
.team-image-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}
.team-image-section .side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 220px;
}
.team-image-section .team-member {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-image-section .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-image-section .team-member .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.team-image-section .team-member h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-image-section .team-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.team-image-section .middle {
    flex: 1.2;
    text-align: center;
    min-width: 250px;
}
.team-image-section .middle img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    object-fit: cover;
    transition: transform 0.3s;
}
.team-image-section .middle img:hover {
    transform: scale(1.05);
}
@media (max-width: 992px) {
    .team-image-section {
        flex-direction: column;
        align-items: center;
    }
    .team-image-section .side {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    .team-image-section .middle {
        margin: 20px 0;
    }
}
@media (max-width: 576px) {
    .team-image-section .side {
        flex-direction: column;
        gap: 15px;
    }
    .team-image-section .middle img {
        max-width: 300px;
    }
}
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 10;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);

    /* Flex centering */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    padding: 10px;           /* for small screens */
}

/* POPUP BOX */
.popup-content {
    position: relative;
    width: 400px;
    max-width: 95%;
    border-radius: 10px;
    overflow: hidden;
    animation: popupFade 0.5s ease;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000;
}

/* POPUP IMAGE */
.popup-content img {
    width: 100%;
    display: block;
}

/* ANIMATION */
@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        padding: 10px;
    }
    .close-btn {
        top: 8px;
        right: 20px;
        font-size: 18px;
        padding: 4px 8px;
    }
}

/* TABLET */
@media (min-width: 601px) and (max-width: 1024px) {
    .popup-content {
        width: 70%;
    }
    .close-btn {
        top: 10px;
        right: 10px;
    }
}

/* DESKTOP */
@media (min-width: 1025px) {
    .popup-content {
        width: 420px;
    }
    .close-btn {
        top: 10px;
        right: 10px;
    }
}
