/*==================================================
  SRI SPARDHA ACADEMY
  PREMIUM CONTACT PAGE
===================================================*/

/*========== GOOGLE FONT ==========*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*========== ROOT VARIABLES ==========*/

:root{

    --primary:#0B5ED7;

    --secondary:#ff8c00;

    --dark:#0f172a;

    --light:#ffffff;

    --gray:#f5f7fb;

    --text:#4b5563;

    --border:#e5e7eb;

    --shadow:0 15px 45px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}


/*========== RESET ==========*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    background:#f7f9fc;

    color:var(--dark);

    overflow-x:hidden;

}


/*========== LINKS ==========*/

a{

    text-decoration:none;

}


img{

    max-width:100%;

    display:block;

}


section{

    padding:90px 7%;

}


/*========== SCROLLBAR ==========*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}


/*==================================================
BACK BUTTON
===================================================*/

.back-home{

    position:fixed;

    top:25px;

    left:25px;

    z-index:1000;

    background:#fff;

    color:var(--primary);

    padding:12px 22px;

    border-radius:50px;

    box-shadow:var(--shadow);

    font-weight:600;

    transition:var(--transition);

}

.back-home:hover{

    transform:translateY(-4px);

    color:#fff;

    background:var(--primary);

}


/*==================================================
HERO
===================================================*/

.contact-hero{

    min-height:90vh;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:

    linear-gradient(rgba(11,94,215,.82),

    rgba(8,38,82,.82)),

    url("../images/contact-banner.jpg");

    background-size:cover;

    background-position:center;

}


.contact-hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    top:-180px;

    right:-120px;

    filter:blur(10px);

}


.contact-hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,140,0,.12);

    border-radius:50%;

    bottom:-180px;

    left:-120px;

}


.hero-overlay{

    position:relative;

    z-index:10;

    max-width:900px;

}


.hero-badge{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.15);

    color:#fff;

    border-radius:50px;

    backdrop-filter:blur(12px);

    margin-bottom:25px;

    font-weight:600;

    letter-spacing:.5px;

}


.contact-hero h1{

    font-size:58px;

    color:#fff;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:700;

}


.contact-hero p{

    font-size:19px;

    color:#f2f2f2;

    max-width:720px;

    margin:auto;

    line-height:1.8;

}


/*==================================================
HERO BUTTONS
===================================================*/

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.primary-btn{

    background:var(--secondary);

    color:#fff;

    padding:17px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 12px 25px rgba(255,140,0,.35);

}


.primary-btn:hover{

    transform:translateY(-5px);

    background:#ff9d1e;

}


.secondary-btn{

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    transition:var(--transition);

    backdrop-filter:blur(8px);

}


.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

}


/*==================================================
COMMON SECTION TITLE
===================================================*/

.section-heading{

    text-align:center;

    margin-bottom:55px;

}


.section-badge{

    display:inline-block;

    padding:10px 22px;

    background:#e8f1ff;

    color:var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}


.section-heading h2{

    font-size:42px;

    margin-bottom:15px;

    color:var(--dark);

}


.section-heading p{

    color:var(--text);

    font-size:17px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}
/*==================================================
BRANCH SECTION
==================================================*/

.branch-section{

    background:#fff;

    position:relative;

}

.branch-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:20px;

}


/*==================================================
BRANCH CARD
==================================================*/

.branch-card{

    background:#fff;

    border-radius:25px;

    padding:35px 30px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    cursor:pointer;

    transition:.4s;

    position:relative;

    overflow:hidden;

    border:2px solid transparent;

}


.branch-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(11,94,215,.05);

    border-radius:50%;

    top:-120px;

    right:-80px;

    transition:.5s;

}


.branch-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

    border-color:var(--primary);

}


.branch-card:hover::before{

    transform:scale(1.4);

}


.branch-card.active{

    border:2px solid var(--secondary);

    background:linear-gradient(135deg,#ffffff,#f8fbff);

}


.branch-image{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),#1b8fff);

    color:#fff;

    font-size:38px;

    margin-bottom:22px;

    box-shadow:0 12px 30px rgba(11,94,215,.25);

}


.branch-card h3{

    font-size:28px;

    margin-bottom:10px;

    color:var(--dark);

}


.branch-card p{

    color:var(--secondary);

    font-weight:600;

    margin-bottom:18px;

}


.branch-card ul{

    list-style:none;

    margin:25px 0;

}


.branch-card ul li{

    padding:8px 0;

    color:#555;

    font-size:15px;

}


.branch-card ul li::before{

    content:"✔";

    color:var(--secondary);

    margin-right:10px;

    font-weight:bold;

}


.branch-card button{

    background:linear-gradient(90deg,var(--secondary),#ff9d1e);

    color:#fff;

    border:none;

    padding:14px 30px;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}


.branch-card button:hover{

    transform:scale(1.05);

}



/*==================================================
BRANCH DETAILS
==================================================*/

.branch-details{

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:45px;

    align-items:center;

    background:#f7f9fc;

}


.details-left{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:var(--shadow);

}


.branch-label{

    display:inline-block;

    background:#eaf3ff;

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}


.details-left h2{

    font-size:36px;

    margin-bottom:20px;

    color:var(--dark);

}


.details-left p{

    font-size:16px;

    line-height:1.8;

    color:#555;

    margin-bottom:18px;

}


.info-box{

    margin-top:30px;

}


.info-box div{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    font-size:16px;

}


.info-box i{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),#3388ff);

    color:#fff;

}


/*==================================================
BUTTONS
==================================================*/

.branch-actions{

    display:flex;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}


.call-btn{

    background:linear-gradient(90deg,var(--primary),#3388ff);

    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.whatsapp-btn{

    background:#25d366;

    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.call-btn:hover,

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}



/*==================================================
GOOGLE MAP
==================================================*/

.details-right{

    position:relative;

}


.details-right iframe{

    width:100%;

    height:580px;

    border:none;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}


.details-right iframe:hover{

    transform:scale(1.01);

}



/*==================================================
FLOATING DECORATION
==================================================*/

.branch-details::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,140,0,.06);

    border-radius:50%;

    right:-120px;

    top:50px;

    z-index:-1;

}
/*==================================================
FREE COUNSELLING SECTION
==================================================*/

.counselling-section{

    background:linear-gradient(180deg,#ffffff,#f8fbff);

}

.counselling-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:35px;

    align-items:start;

}


/*==================================================
FORM CARD
==================================================*/

.form-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}


.form-card::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(11,94,215,.05);

    top:-120px;

    right:-100px;

}


.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}


.input-box{

    display:flex;

    flex-direction:column;

}


.input-box label{

    margin-bottom:8px;

    font-weight:600;

    color:#1e293b;

}


.input-box input,

.input-box select,

.input-box textarea{

    padding:15px 18px;

    border:2px solid #e7edf6;

    border-radius:14px;

    font-size:15px;

    font-family:Poppins,sans-serif;

    transition:.3s;

    background:#fff;

}


.input-box textarea{

    resize:none;

}


.input-box input:focus,

.input-box select:focus,

.input-box textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 5px rgba(11,94,215,.08);

}


.submit-btn{

    width:100%;

    margin-top:25px;

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(90deg,var(--secondary),#ffb020);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}


.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(255,140,0,.35);

}



/*==================================================
WHY CARD
==================================================*/

.why-card{

    background:linear-gradient(135deg,#0b5ed7,#0b3f8c);

    color:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 20px 55px rgba(11,94,215,.25);

    position:sticky;

    top:100px;

}


.why-card h3{

    font-size:28px;

    margin-bottom:30px;

}


.why-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.15);

}


.why-item:last-child{

    border-bottom:none;

}


.why-item i{

    color:#ffd166;

    font-size:20px;

}


.contact-box{

    margin-top:35px;

    background:rgba(255,255,255,.1);

    border-radius:18px;

    padding:25px;

}


.contact-box h4{

    margin-bottom:20px;

}


.call-now,

.chat-btn{

    display:block;

    text-align:center;

    margin-top:15px;

    padding:15px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}


.call-now{

    background:#fff;

    color:var(--primary);

}


.chat-btn{

    background:#25d366;

    color:#fff;

}


.call-now:hover,

.chat-btn:hover{

    transform:translateY(-3px);

}



/*==================================================
ACHIEVERS
==================================================*/

.achievers-section{

    background:#f5f8ff;

}


.achievers-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.student-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}


.student-card:hover{

    transform:translateY(-10px);

}


.student-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}


.student-card h3{

    margin-top:20px;

    font-size:22px;

}


.student-card p{

    color:var(--secondary);

    font-weight:600;

    margin:10px 0 25px;

}



/*==================================================
STATISTICS
==================================================*/

.stats-section{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    background:linear-gradient(90deg,#0b5ed7,#0d4ca8);

}


.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:35px;

    text-align:center;

    color:#fff;

    transition:.35s;

}


.stat-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}


.stat-card h2{

    font-size:48px;

    margin-bottom:10px;

    color:#fff;

}


.stat-card p{

    font-size:16px;

    color:#eef4ff;

}



/*==================================================
SECTION DIVIDERS
==================================================*/

.counselling-section,

.achievers-section,

.stats-section{

    position:relative;

    overflow:hidden;

}


.counselling-section::before,

.achievers-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,140,0,.05);

    border-radius:50%;

    top:-120px;

    left:-120px;

    z-index:0;

}
/*==================================================
LATEST BATCH SECTION
==================================================*/

.batch-section{

    background:#ffffff;

    position:relative;

}

.batch-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.batch-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

    border:2px solid transparent;

}


.batch-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(11,94,215,.05);

    top:-100px;

    right:-80px;

}


.batch-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 28px 55px rgba(0,0,0,.12);

}


.batch-card.featured{

    background:linear-gradient(135deg,#0b5ed7,#0052cc);

    color:#fff;

}


.batch-card.featured ul li{

    color:#fff;

}


.batch-card.featured h3{

    color:#fff;

}


.batch-tag{

    position:absolute;

    top:22px;

    right:-45px;

    background:var(--secondary);

    color:#fff;

    padding:8px 50px;

    transform:rotate(45deg);

    font-size:12px;

    font-weight:600;

}


.batch-card h3{

    font-size:28px;

    margin-bottom:25px;

}


.batch-card ul{

    list-style:none;

    margin-bottom:30px;

}


.batch-card ul li{

    padding:12px 0;

    color:#555;

    border-bottom:1px solid #eee;

}


.batch-card a{

    display:inline-block;

    background:var(--secondary);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.batch-card a:hover{

    transform:translateY(-4px);

}



/*==================================================
COURSES
==================================================*/

.courses-section{

    background:#f8fbff;

}

.course-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.course-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.course-card:hover{

    transform:translateY(-10px);

    background:linear-gradient(135deg,#0b5ed7,#0052cc);

    color:#fff;

}


.course-card:hover p{

    color:#fff;

}


.course-card i{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#edf4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:22px;

    color:var(--primary);

    font-size:32px;

    transition:.35s;

}


.course-card:hover i{

    background:#fff;

}


.course-card h3{

    font-size:24px;

    margin-bottom:12px;

}


.course-card p{

    color:#666;

    line-height:1.7;

}



/*==================================================
TESTIMONIALS
==================================================*/

.testimonial-section{

    background:#fff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.testimonial-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}


.testimonial-card:hover{

    transform:translateY(-10px);

}


.testimonial-card::before{

    content:"★★★★★";

    color:#ffb000;

    font-size:20px;

    display:block;

    margin-bottom:18px;

}


.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}


.testimonial-card h4{

    color:var(--primary);

}



/*==================================================
FAQ
==================================================*/

.faq-section{

    background:#f8fbff;

}


.faq-box{

    max-width:950px;

    margin:auto;

}


.faq-box details{

    background:#fff;

    margin-bottom:18px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    overflow:hidden;

}


.faq-box summary{

    cursor:pointer;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    list-style:none;

    position:relative;

}


.faq-box summary::-webkit-details-marker{

    display:none;

}


.faq-box summary::after{

    content:"+";

    position:absolute;

    right:30px;

    top:20px;

    font-size:28px;

    color:var(--primary);

}


.faq-box details[open] summary::after{

    content:"−";

}


.faq-box p{

    padding:0 28px 25px;

    color:#666;

    line-height:1.8;

}



/*==================================================
CTA SECTION
==================================================*/

.cta-section{

    background:linear-gradient(135deg,#0b5ed7,#0052cc);

    text-align:center;

    color:#fff;

    border-radius:35px;

    margin:80px 7%;

    padding:70px 40px;

}


.cta-section h2{

    font-size:48px;

    margin-bottom:20px;

}


.cta-section p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    line-height:1.8;

}


.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.cta-buttons a{

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.cta-buttons a:first-child{

    background:var(--secondary);

    color:#fff;

}


.cta-buttons a:last-child{

    background:#fff;

    color:var(--primary);

}


.cta-buttons a:hover{

    transform:translateY(-4px);

}
/*==================================================
FOOTER
==================================================*/

.footer-modern{

    background:#08172d;

    color:#fff;

    position:relative;

    overflow:hidden;

    margin-top:100px;

}

.footer-wave{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:120px;

    background:linear-gradient(180deg,#ffffff,#08172d);

    clip-path:polygon(0 0,100% 40%,100% 100%,0 100%);

}

.footer-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

    padding:140px 7% 70px;

}

.footer-col h3{

    margin-bottom:25px;

    font-size:24px;

}

.footer-logo{

    width:90px;

    border-radius:15px;

    margin-bottom:20px;

}

.footer-col p{

    color:#cfd8e3;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:14px;

}

.footer-col ul li a{

    color:#cfd8e3;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#12294b;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    color:#b8c2cf;

}


/*==================================================
FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:9999;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    animation:whatsappFloat 2s infinite;

}

@keyframes whatsappFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

.floating-whatsapp:hover{

transform:scale(1.08);

}


/*==================================================
SCROLL TOP BUTTON
==================================================*/

.top-btn{

    position:fixed;

    right:28px;

    bottom:110px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:none;

    font-size:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

    z-index:999;

    transition:.3s;

}

.top-btn:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}


/*==================================================
ANIMATIONS
==================================================*/

.branch-card,

.batch-card,

.course-card,

.student-card,

.testimonial-card,

.stat-card,

.form-card,

.details-left{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}


/*==================================================
HOVER GLOW
==================================================*/

.branch-card:hover,

.course-card:hover,

.batch-card:hover,

.student-card:hover,

.testimonial-card:hover{

box-shadow:

0 25px 60px rgba(11,94,215,.12);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.footer-container{

grid-template-columns:1fr 1fr;

}

.course-grid{

grid-template-columns:repeat(3,1fr);

}

.achievers-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.contact-hero h1{

font-size:42px;

}

.branch-grid,

.batch-grid,

.testimonial-grid,

.stats-section,

.counselling-wrapper,

.branch-details{

grid-template-columns:1fr;

}

.course-grid{

grid-template-columns:repeat(2,1fr);

}

.form-row{

grid-template-columns:1fr;

}

.details-right iframe{

height:420px;

}

}

@media(max-width:768px){

section{

padding:70px 25px;

}

.contact-hero{

min-height:75vh;

}

.contact-hero h1{

font-size:34px;

}

.section-heading h2{

font-size:30px;

}

.course-grid,

.achievers-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.hero-buttons,

.branch-actions,

.cta-buttons{

flex-direction:column;

}

.hero-buttons a,

.branch-actions a,

.cta-buttons a{

width:100%;

text-align:center;

}

}

@media(max-width:480px){

.contact-hero h1{

font-size:28px;

}

.hero-badge{

font-size:13px;

}

.branch-card,

.form-card,

.why-card,

.batch-card,

.course-card,

.student-card,

.testimonial-card{

padding:25px;

}

.details-left{

padding:25px;

}

.details-right iframe{

height:320px;

}

.floating-whatsapp{

width:60px;

height:60px;

font-size:28px;

}

.top-btn{

width:50px;

height:50px;

}

}

/*==================================================
END OF FILE
==================================================*/