   /* SERVICES SECTION */

.services-section{
    background:linear-gradient(135deg,#1548a5,#1e4fae);
    padding:80px 8%;
    color:#fff;
    overflow:hidden;
}

.services-header{
    max-width:900px;
    margin-bottom:60px;
}

.service-badge{
    display:inline-block;
    padding:8px 16px;
    background:green;
    border-radius:50px;
    font-size:15px;
    margin-bottom:20px;
}

.services-header h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.services-header p{
    opacity:.9;
    max-width:900px;
}

.service-tags{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

.service-tags span{
    padding:10px 18px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
    font-size:14px;
}

.services-wrapper{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:50px;
    align-items:end;
}

.service-image{
    display: block;
}

.service-image img{
    width:370px;
    height: 600px;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.service-card{
    background:white;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.4s;
    min-height:230px;
    color: black;
}

.service-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.icon{
    width:60px;
    height:60px;
    background:#fff;
    color:#1548a5;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
}

.service-card h3{
    font-size:20px;
    margin-bottom:15px;
    line-height:1.3;
}

.service-card p{
    font-size:14px;
    line-height:1.7;
    opacity:.9;
}

/* TABLET */

@media(max-width:1100px){

    .services-wrapper{
        grid-template-columns:1fr;
    }

    .service-image{
        display:none;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .services-header h2{
        font-size:2rem;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        min-height:auto;
    }
}
    .courses-section{
    padding:80px 8%;
    background:#f8fafc;
}

.courses-section h2{
    text-align:left;
    text-align: justify;
    font-size:1rem;
    color:#0a3d62;
    margin-bottom:50px;
}

.courses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.courses-grid h3{
    font-weight: bold;
}

.course-card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s;
    border-top:5px solid #0a3d62;
}

.course-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,0.12);
}

.course-card h3{
    margin-bottom:12px;
    font-size:1.25rem;
}

.course-card p{
    color:#555;
    line-height:1.6;
}

/* Color Themes */
.medical{border-color:#27ae60;}
.defence{border-color:#7f8c8d;}
.university{border-color:#8e44ad;}
.engineering{border-color:#16a085;}
.architecture{border-color:#e67e22;}
.research{border-color:#e74c3c;}
.management{border-color:#2980b9;}
.agriculture{border-color:#2ecc71;}
.law{border-color:#b5651d;}
.hotel{border-color:#f39c12;}
.fashion{border-color:#9b59b6;}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    color:#333;
    line-height:1.6;
    zoom: 85%;
}

/* TOP CONTACT BAR */
.top-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background:#082c47;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info span{
    display:flex;
    align-items:center;
    gap:8px;
}
.contact-btn .btn {
    background: red;
    color: white;
    padding: 6px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.contact-btn .btn:hover {
    background: #0056b3;
}
/* HEADER */
header{
    background:linear-gradient(135deg,#1548a5,#1e4fae);
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:bold;
}

.logo img{
    width:60px;
    height:50px;
    background:white;
    border-radius:50%;
    padding:4px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#f39c12;
}

/* MENU BUTTON */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:white;
}

/* HERO */
.hero{
    min-height:90vh;
   background:linear-gradient(135deg,#1548a5,#1e4fae);
    color:white;
    display:flex;
    align-items:center;
    padding:60px 8%;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    width:100%;
}

/* SLIDER */
.slider{
    position:relative;
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:25px;
    
}

.slider::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.2);
    transition:opacity 1.5s ease,
    transform 6s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

/* HERO CONTENT */
.hero-content{
    animation:fadeInUp 1.2s ease;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:8px 14px;
    border-radius:50px;
    font-size:0.85rem;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:3.2rem;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-content h1 span{
    color:#f39c12;
}

.hero-subtitle{
    opacity:0.9;
    max-width:500px;
    font-size:1.1rem;
}

/* BUTTONS */
.btn1{
    display:inline-block;
    padding:14px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    margin-top: 3%;
    width: 70%;
}

.btn{
    display:inline-block;
    padding:14px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.btn-primary{
    background:#f39c12;
    color:white;
}

.btn-primary:hover{
    background:#d68910;
}

.btn-secondary{
    background:white;
    color:#0a3d62;
}

.btn-secondary:hover{
    background:#f4f4f4;
}

/* STATS */
.hero-stats{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-stats div{
    background:rgba(255,255,255,0.08);
    padding:10px 15px;
    border-radius:10px;
    text-align:center;
    min-width:110px;
}

.hero-stats strong{
    display:block;
    color:#f39c12;
    font-size:1.2rem;
}

/* ANIMATION */
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){

    .contact-info{
        justify-content:center;
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#0a3d62;
        display:none;
        padding:20px 0;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:1.5rem;
    }

    .hero-stats{
        justify-content:center;
    }

    .slider{
        height:300px;
    }
}
.achievement-section{
    padding:100px 0;
    background:linear-gradient(135deg,#143a86,#2d67d3);
    position:relative;
    overflow:hidden;
}

.achievement-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size:80px 80px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.section-title{
    text-align:center;
    color:#fff;
    margin-bottom:60px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.section-title h2{
    font-size:42px;
    margin-bottom:18px;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#d8e5ff;
    line-height:1.8;
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.stat-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,.18);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffffff,#dce7ff);
    color:#2156c8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.stat-card h3{
    font-size:48px;
    font-weight:700;
    margin-bottom:8px;
    background:linear-gradient(90deg,#ffffff,#b7d0ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stat-card h4{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
    font-weight:600;
}

.stat-card p{
    color:#dbe5ff;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:991px){
    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:34px;
    }
    body{
    color:#333;
    line-height:1.6;
    zoom: 100%;
}

}

@media(max-width:576px){

    .stats-wrapper{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }

    .stat-card h3{
        font-size:38px;
    }
}
.footer{
    background:#fff;
    padding:80px 0 30px;
    border-top:1px solid #e9eef7;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr;
    gap:50px;
}

.footer-logo{
    max-width:240px;
    margin-bottom:20px;
}

.footer-about p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:30px;
    text-align: justify;
}

.footer h4{
    font-size:22px;
    color:#1f2937;
    margin-bottom:25px;
    position:relative;
}

.footer h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#0d6efd;
    border-radius:10px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:16px;
}

.footer ul li a{
    color:#6b7280;
    text-decoration:none;
    transition:.3s;
    display:flex;
    align-items:center;
}

.footer ul li a::before{
    content:"➜";
    color:#0d6efd;
    margin-right:10px;
    transition:.3s;
}

.footer ul li a:hover{
    color:#0d6efd;
    transform:translateX(6px);
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f4f7fc;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0d6efd;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.social-links a:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-5px);
}


@media(max-width:991px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer{
    text-align:center;
}

.footer h4::after{
    left:50%;
    transform:translateX(-50%);
}

.social-links{
    justify-content:center;
}

.contact-item{
    justify-content:center;
    text-align:left;
}

}

.why-choose{
    padding:80px 0;
    background:#f6f9ff;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span:first-child{
    color:#ff7b00;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    margin-top:10px;
    font-size:40px;
    font-weight:700;
    color:#1f2937;
}

.section-heading h2 span{
    color:#0d6efd;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.choose-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.choose-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#00c6ff);
    transform:scaleX(0);
    transition:.35s;
}

.choose-card:hover::before{
    transform:scaleX(1);
}

.choose-card:hover{
    transform:translateY(-10px);
}

.icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#00bcd4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

.choose-card h4{
    font-size:18px;
    margin-bottom:8px;
    color:#222;
}

.choose-card p{
    color:#6c757d;
    font-size:15px;
}

@media(max-width:1200px){
    .choose-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:30px;
    }
}

@media(max-width:480px){
    .choose-grid{
        grid-template-columns:1fr;
    }
  
}
.neet-banner{
    width:100%;
    padding:50px 0;
    background:#f5f5f5;
}

.banner-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    background:linear-gradient(90deg,#032b59,#0a4b8d);
    border-radius:10px;
    color:#fff;
}
#banner_right_android{
    display: none;
}

.banner-left{
    width:60%;
    padding:40px;
}

.banner-right{
    width:40%;
    text-align:right;
}

.banner-right img{
    display:block;
    width: 90%;
    margin-left: 5%;
    height: 280px;
    margin-bottom: 4%;
}

.banner-left h1{
    margin:0;
    line-height:1.1;
}

.yellow{
    color:#ffc107;
    font-size:65px;
    font-weight:800;
}

.white{
    display:block;
    font-size:45px;
    font-weight:700;
}

.green-ribbon{
    display:inline-block;
    margin:20px 0 30px;
    padding:12px 35px;
    background:#0a8c63;
    font-size:46px;
    font-weight:700;
    clip-path:polygon(0 0,100% 0,90% 100%,0 100%);
}

.feature{
    display:flex;
    align-items:center;
    margin:18px 0;
    font-size:28px;
    font-weight:600;
}

.icon1{
    width:38px;
    height:38px;
    background:#d40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    margin-right:15px;
}

.highlight{
    color:#ffc107;
    margin:0 6px;
}

.admission-badge{
    margin-top:35px;
    margin-left: 25%;
}

.badge-inner{
    width:210px;
    height:210px;
    border-radius:50%;
    border:10px solid #d39c00;
    background:#7b0000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

#banner_right_desktop{
    height: 90%;
}
.badge-inner h2{
    margin:5px 0;
    font-size:52px;
}

.admission-text{
    background:#ffcf3b;
    color:#000;
    padding:6px 18px;
    font-size:24px;
    font-weight:700;
    transform:rotate(-3deg);
}

.badge-inner p{
    margin-top:10px;
    font-size:18px;
    font-weight:700;
}

@media(max-width:768px){

.banner-content{
    flex-direction:column;
}

.banner-left,
.banner-right{
    width:100%;
}
  #banner_right_android{
    display: block;
}
#banner_right_desktop{
    display: none;
}

.banner-left{
    padding:25px;
}

.banner-right{
    text-align:center;
}

.yellow{
    font-size:42px;
}

.white{
    font-size:32px;
}

.green-ribbon{
    font-size:30px;
}

.feature{
    font-size:20px;
}

.badge-inner{
    width:170px;
    height:170px;
}

.badge-inner h2{
    font-size:40px;
}

.admission-text{
    font-size:18px;
}
}

.sticky-menu{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%);
    z-index:9999;
}

.sticky-item{
    width:210px;
    margin:8px 0;
    padding:15px 18px;

    display:flex;
    align-items:center;
    gap:15px;

    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;

    border-radius:30px 0 0 30px;

    transform:translateX(150px);
    transition:.35s ease;

    box-shadow:0 4px 12px rgba(0,0,0,.25);
}

.sticky-item i{
    width:24px;
    text-align:center;
    font-size:20px;
}

/* Individual Colors */

.enquiry{
    background:#ff9800;
}

.call{
    background:#2196F3;
}

.mbbs{
    background:#28a745;
}

.college{
    background:#d81b60;
}

.enquiry:hover{
    background:#e68900;
}

.call:hover{
    background:#0b7dda;
}

.mbbs:hover{
    background:#218838;
}

.college:hover{
    background:#c2185b;
}

/* Mobile */

@media(max-width:768px){

    .sticky-item{
        width:180px;
        transform:translateX(120px);
        font-size:14px;
        padding:12px 15px;
    }

}

/* HOW IT WORKS */

.process-section{
    padding:90px 8%;
    background:#f6f9ff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#0a3d62;
    color:#fff;
    font-size:14px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:2.8rem;
    color:#0a3d62;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:1.7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.process-card{
    position:relative;
    background:linear-gradient(135deg,#0a3d62,#1f5ca8);
    color:#fff;
    border-radius:20px;
    padding:35px 25px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.25);
}

.step-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:800;
    color:rgba(255,255,255,.08);
}

.step-icon{
    width:70px;
    height:70px;
    background:#fff;
    color:#0a3d62;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:20px;
}

.process-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.process-card p{
    line-height:1.7;
    opacity:.95;
}
.process-card button{
    width: 30%;
    height: 40px;
    background-color: lightseagreen;
    border:none;
    color: white;
    margin-top: 3%;
    margin-left: .5%;
   
}
.process-card a{
    text-decoration: none;
    color: white;
}

@media(max-width:768px){

    .section-title h2{
        font-size:2rem;
    }

    .process-card{
        padding:30px 20px;
    }
}

/* EXPLORE COLLEGE CTA */

.explore-college{
    padding:80px 8%;
    background:linear-gradient(135deg,#0a3d62,#1f5ca8);
    color:#fff;
    text-align:center;
    margin-bottom: 2%;
}

.explore-content{
    max-width:850px;
    margin:auto;
}

.explore-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.explore-content h2{
    font-size:2.8rem;
    margin-bottom:20px;
}

.explore-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.95;
    margin-bottom:35px;
}

.explore-btn{
    display:inline-block;
    padding:16px 38px;
    background:#ffb703;
    color:#0a3d62;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    border-radius:50px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.explore-btn:hover{
    background:#ffffff;
    transform:translateY(-5px);
}

@media(max-width:768px){

    .explore-content h2{
        font-size:2rem;
    }

    .explore-content p{
        font-size:16px;
    }

    .explore-btn{
        padding:14px 28px;
        font-size:16px;
    }

}

/* CONTACT */

.contact-section{
    padding:20px 8%;
    background:#f5f8fc;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-image img{
    width:100%;
    height: 750px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-badge{
    display:inline-block;
    background:#0a3d62;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
}

.contact-form h2{
    color:#0a3d62;
    margin-bottom:15px;
    font-size:2rem;
}

.contact-form p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#0a3d62;
}

.whatsapp-btn{

    width:100%;
    background:#25D366;
    color:#fff;
    border:none;
    padding:16px;
    font-size:18px;
    font-weight:bold;
    border-radius:10px;
    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    transition:.3s;
}

.whatsapp-btn:hover{

    background:#1db954;
    transform:translateY(-3px);
}

.whatsapp-btn img{

    width:28px;
}

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.contact-form{

padding:30px;

}

}
/* OUR OFFICES */

.office-section{
    padding:90px 8%;
    background:#f8fbff;
}

.office-badge{
    display:inline-block;
    padding:8px 18px;
    background:#0a3d62;
    color:#fff;
    border-radius:30px;
    margin-bottom:15px;
    font-size:14px;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.7rem;
    color:#0a3d62;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.office-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.office-card{
    background:#fff;
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:5px solid #0a3d62;
    transition:.35s;
}

.office-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.office-icon{
    width:70px;
    height:70px;
    background:#0a3d62;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 20px;
}

.office-card h3{
    color:#0a3d62;
    font-size:22px;
    margin-bottom:8px;
}

.office-card p{
    color:#666;
    font-size:16px;
}

@media(max-width:768px){

    .section-title h2{
        font-size:2rem;
    }

    .office-grid{
        grid-template-columns:1fr;
    }

}
.copyright{
    font-size:15px;
    color:black;
    text-align: center;
    font-weight: bold;
}

.developer{
    margin-top:10px;
    font-size:14px;
    color:black;
    text-align: center;
    font-weight: bold;
}

.developer strong{
    color:#f39c12;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  text-align: center;
}
#nextBtn{
    background:#007bff;
    color:#fff;
    border:none;
    padding:10px 30px;
    border-radius:6px;
    font-size:10px;
    cursor:pointer;
}

#nextBtn:hover{
    background:#0056b3;
}
#prevBtn{
    background:#007bff;
    color:#fff;
    border:none;
    padding:10px 30px;
    border-radius:6px;
    font-size:10px;
    cursor:pointer;
}

#prevBtn:hover{
    background:#0056b3;
}
#sliderImage {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: opacity 0.6s ease;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.breaking-news{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #ff1e1e;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: pulse 1.5s infinite;
}

/* icon size */
.breaking-news i{
    font-size: 18px;
}

/* hover effect */
.breaking-news:hover{
    background: #c90000;
    transform: scale(1.05);
}

/* pulse animation */
@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.08); }
    100%{ transform: scale(1); }
}

/* mobile responsive */
@media (max-width:768px){
    .breaking-news{
        right: 15px;
        bottom: 15px;
        font-size: 10px;
        padding: 10px 14px;
    }
}
