* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    background: linear-gradient(90deg, #1e66b3, #2bb7a8);
    color: white;
}

/* icon spacing */
.top-icons span {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 4px;
    margin-left: 6px;
}

/* main header spacing */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    /* top bottom + left right */
    flex-wrap: wrap;
}

/* logo and text spacing */
.logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 70%;
}

.logo {
    width: 80px;
}

/* text spacing */
.school-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.school-text h1 {
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 600;
}

.school-text h2 {
    font-size: 20px;
    font-weight: 500;
}

.school-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* right logos spacing */
.right-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-logos img {
    height: 60px;
}

/* responsive */
@media (max-width:900px) {

    .school-text h1 {
        font-size: 18px
    }

    .school-text h2 {
        font-size: 16px
    }

    .right-logos img {
        height: 45px;
    }

}

@media (max-width:700px) {

    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .logo-area {
        max-width: 100%;
    }

    .right-logos {
        width: 100%;
        justify-content: flex-start;
    }

}

@media (max-width:700px) {

    .right-logos {
        display: none;
    }

}


/* navbar css start */
/* NAVBAR */

.navbar {
    background: #0d4a85;
    position: sticky;
    top: 0;
    z-index: 999;
    justify-content: flex-end;
    /* right side */
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 15px 22px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: .3s;
}

.nav-links i {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

/* hover */

.nav-links li a:hover {
    background: #1e66b3;
    border-radius: 4px;
}

/* active */

.nav-links .active a {
    background: #ff9800;
    border-radius: 4px;
}

/* icon size */

.nav-links i {
    font-size: 16px;
}

/* mobile */

@media (max-width:768px) {

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 15px;
    }

}

@media (max-width:768px) {

    .dropdown-menu {
        position: static;
        box-shadow: none
    }

}

/* hover */

.nav-links a:hover {
    background: #1e66b3;
}

/* active menu */

.nav-links .active a {
    background: #ff9800;
}

/* hamburger */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    justify-content: flex-end;
    /* right side */
}

/* MOBILE */

@media (max-width:900px) {

    .nav-links {
        flex-direction: column;
        position: absolute;
        background: #0d4a85;
        width: 100%;
        left: 0;
        top: 100%;
        display: none;
    }

    .nav-links li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        padding: 15px;
    }

    .nav-links.show {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

}

/* navbar css end */

/* heros section css start */
.hero {

    width: 100%;
    position: relative;
    overflow: hidden;

}

.slider {

    display: flex;
    transition: 0.6s ease;

}

.slide {

    min-width: 100%;

}

.slide img {

    width: 100%;
    height: 500px;
    object-fit: cover;

}

/* arrows */

.prev,
.next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;

}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.prev:hover,
.next:hover {
    background: #1e66b3;
}

/* dots */

.dots {

    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;

}

.dot {

    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.6;

}

.dot.active {
    opacity: 1;
    background: #1e66b3;
}

@media(max-width:900px) {

    .slide img {
        height: 400px;
    }

}

@media(max-width:600px) {

    .slide img {
        height: 250px;
    }

    .prev,
    .next {
        font-size: 18px;
        padding: 8px 10px;
    }

}

/* hero section css end */

/* political card css start */
.leaders {

    background: #1f252c;
    padding: 80px 40px;

}

.leaders-container {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: auto;

}

.leader-card {

    background: #2b3138;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);

}

/* hover glow */

.leader-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 196, 0, 0.5);

}

/* image */

.leader-img {

    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    padding: 6px;
    background: #ffc400;

}

.leader-img img {

    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;

}

.leader-card h3 {

    margin-top: 20px;
    color: white;
    font-size: 20px;

}

.leader-card p {

    margin-top: 8px;
    color: #d3d3d3;
    font-size: 15px;

}

@media(max-width:1100px) {

    .leaders-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .leaders-container {
        grid-template-columns: 1fr;
    }

    .leader-img {
        width: 120px;
        height: 120px;
    }

}

/* political card css end */

/* school about us start */
.vision-message {

    background: #f2f2f2;
    padding: 80px 40px;

}

.vision-container {

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

/* left */

.vision-box {

    background: #e7e7e7;
    padding: 40px;

}

.vision-box h2 {

    font-size: 36px;
    margin-bottom: 20px;

}

.vision-box ul {

    margin-left: 20px;
    margin-bottom: 30px;

}

.vision-box li {

    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;

}

/* right */

.message-box {

    background: #d9d5e3;
    padding: 40px;
    text-align: center;

}

.message-box h2 {

    font-size: 36px;
    margin-bottom: 20px;

}

.principal-img {

    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;

}

.message-box h3 {

    font-size: 22px;
    margin-bottom: 5px;

}

.designation {

    font-weight: 600;
    margin-bottom: 15px;

}

.message-box p {

    font-size: 17px;
    line-height: 1.6;

}

/* button */

.read-btn {

    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #4b3f91;
    color: white;
    text-decoration: none;
    border-radius: 5px;

}

.read-btn:hover {

    background: #372c75;

}

@media(max-width:900px) {

    .vision-container {

        grid-template-columns: 1fr;

    }

    .vision-box,
    .message-box {

        padding: 30px;

    }

}

/* school about us end */

/* notics board css start */



/* notics board css end */


/* youtube video css start */
.video-section {

    padding: 80px 40px;
    background: #f5f7fa;

}

.video-container {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;

}

/* Video */

.video-box iframe {

    width: 100%;
    height: 350px;
    border-radius: 10px;

}

/* Content */

.video-content h2 {

    font-size: 34px;
    margin-bottom: 20px;
    color: #222;

}

.video-content p {

    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;

}

/* Button */

.video-btn {

    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;

    background: #0b5ed7;
    color: #fff;

    text-decoration: none;
    border-radius: 6px;

    transition: 0.3s;

}

.video-btn:hover {

    background: #084298;

}

@media(max-width:900px) {

    .video-container {

        grid-template-columns: 1fr;

    }

    /* video first */

    .video-box {

        order: 1;

    }

    .video-content {

        order: 2;

    }

    .video-box iframe {

        height: 250px;

    }

    .video-content h2 {

        font-size: 28px;

    }

    .video-content p {

        font-size: 16px;

    }

}

/* youtube video css end */










/* footer css start */
.footer {

    background: #0b2c4a;
    color: white;
    padding: 50px 20px 0;

}

.footer-container {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.footer-col h3 {

    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #2bb7a8;
    display: inline-block;
    padding-bottom: 5px;

}

.footer-col ul {

    list-style: none;

}

.footer-col ul li {

    margin: 10px 0;

}

.footer-col ul li a {

    color: #ddd;
    text-decoration: none;
    transition: .3s;

}

.footer-col ul li a:hover {

    color: #2bb7a8;
    padding-left: 5px;

}

/* school info */

.footer-logo {

    width: 80px;
    margin-bottom: 10px;

}

.school-info h4 {

    margin-bottom: 10px;

}

.school-info p {

    font-size: 14px;
    color: #ccc;

}

/* bottom bar */

.footer-bottom {

    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 15px 0;
    font-size: 14px;
    color: #ccc;

}

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

}

/* footer css end */

/* about pm shri css start  */
.pmshri-about {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    padding: 80px 20px;
}

/* HERO */
.pmshri-hero {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.pmshri-hero h1 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 15px;
}

.pmshri-hero p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

/* CONTENT */
.pmshri-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.pmshri-text p {
    margin-bottom: 18px;
    color: #334155;
    line-height: 1.7;
}

/* STATS CARDS */
.pmshri-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pm-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.pm-card:hover {
    transform: translateY(-8px);
}

.pm-card h3 {
    font-size: 32px;
    color: #f97316;
    margin-bottom: 5px;
}

.pm-card p {
    color: #64748b;
}

/* FEATURES */
.pmshri-features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 35px;
    color: #f97316;
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: #0f172a;
}

/* TIMELINE */
.pmshri-timeline {
    margin-top: 80px;
    text-align: center;
}

.pmshri-timeline h2 {
    margin-bottom: 40px;
    color: #0f172a;
}

.timeline-box {
    background: white;
    max-width: 600px;
    margin: 15px auto;
    padding: 20px;
    border-left: 5px solid #f97316;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-box span {
    font-weight: 600;
    color: #f97316;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .pmshri-container {
        grid-template-columns: 1fr;
    }

    .pmshri-cards {
        grid-template-columns: 1fr 1fr;
    }

    .pmshri-features {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .pmshri-cards {
        grid-template-columns: 1fr;
    }

    .pmshri-features {
        grid-template-columns: 1fr;
    }

    .pmshri-hero h1 {
        font-size: 28px;
    }

}

/* about pm shri css end */

/* about us css start */
.about-school {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    padding: 70px 20px;
}

/* HERO */

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-hero p {
    color: #64748b;
}

/* ABOUT SECTION */

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: #0f172a;
    margin-bottom: 15px;
}

.about-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* VISION MISSION */

.vision-mission {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.vision-box,
.mission-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f97316;
}

.mission-box ul {
    padding-left: 20px;
}

.mission-box li {
    margin-bottom: 8px;
}

/* ACHIEVEMENTS */

.achievements {
    margin-top: 80px;
    text-align: center;
}

.achievements h2 {
    margin-bottom: 40px;
    color: #0f172a;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.achievement-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-8px);
}

.achievement-card h3 {
    color: #f97316;
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .about-container {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .about-hero h1 {
        font-size: 28px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

}

/* about us css end */

/* principal message css start */
.principal-section {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

/* HERO */

.principal-hero {
    text-align: center;
    margin-bottom: 60px;
}

.principal-hero h1 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 10px;
}

.principal-hero p {
    color: #64748b;
}

/* CONTAINER */

.principal-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

/* IMAGE */

.principal-image {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.principal-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.principal-name {
    color: #0f172a;
    margin-bottom: 5px;
}

.principal-image span {
    color: #f97316;
    font-weight: 500;
}

/* MESSAGE */

.principal-message {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.principal-message p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.principal-sign {
    margin-top: 25px;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .principal-container {
        grid-template-columns: 1fr;
    }

    .principal-image {
        max-width: 350px;
        margin: auto;
    }

}

@media(max-width:600px) {

    .principal-hero h1 {
        font-size: 28px;
    }

    .principal-message {
        padding: 25px;
    }

}

/* principal message css end */

/* admission css start */
.admission-section {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

/* HERO */

.admission-hero {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.admission-hero h1 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 10px;
}

.admission-hero p {
    color: #475569;
    line-height: 1.6;
}

/* INFO */

.admission-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    color: #334155;
}

/* STREAMS */

.stream-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stream-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f97316;
}

.stream-card h2 {
    margin-bottom: 15px;
    color: #0f172a;
}

.stream-card ul {
    list-style: none;
    padding: 0;
}

.stream-card li {
    padding: 6px 0;
    color: #475569;
}

/* TERMS */

.academic-terms {
    margin-top: 70px;
    text-align: center;
}

.academic-terms h2 {
    margin-bottom: 30px;
    color: #0f172a;
}

.term-box {
    display: inline-block;
    background: white;
    padding: 20px 40px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.term-box h3 {
    color: #f97316;
}

/* NOTE */

.admission-note {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: center;
    color: #475569;
    line-height: 1.7;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .stream-container {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .admission-hero h1 {
        font-size: 28px;
    }

    .term-box {
        display: block;
        margin: 15px auto;
    }

}

/* admission css start */

/* library css start */
.library-section {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

/* TITLE */

.library-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 50px;
}

.library-title h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 10px;
}

.library-title p {
    color: #475569;
    line-height: 1.6;
}

/* GALLERY */

.library-gallery {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.library-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.library-img img:hover {
    transform: scale(1.05);
}

/* CONTENT */

.library-content {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.library-content h3 {
    color: #0f172a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.library-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.library-content ul {
    padding-left: 20px;
}

.library-content li {
    margin-bottom: 8px;
    color: #334155;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .library-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .library-gallery {
        grid-template-columns: 1fr;
    }

    .library-title h2 {
        font-size: 28px;
    }

    .library-content {
        padding: 25px;
    }

}

/* library css end */

/* gallery css start */
.school-gallery {

    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;

}

/* TITLE */

.gallery-title {

    text-align: center;
    margin-bottom: 50px;

}

.gallery-title h2 {

    font-size: 36px;
    color: #0f172a;
    margin-bottom: 10px;

}

.gallery-title p {

    color: #64748b;

}

/* GRID */

.gallery-grid {

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.gallery-item {

    overflow: hidden;
    border-radius: 10px;

}

.gallery-item img {

    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;

}

.gallery-item img:hover {

    transform: scale(1.07);

}

/* RESPONSIVE */

@media(max-width:992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .gallery-title h2 {

        font-size: 28px;

    }

}

/* gallery css end */


/* contact css start */
.contact-section {

    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;

}

/* TITLE */

.contact-title {

    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 50px;

}

.contact-title h2 {

    font-size: 36px;
    color: #0f172a;
    margin-bottom: 10px;

}

.contact-title p {

    color: #64748b;

}

/* INFO CARDS */

.contact-info {

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;

}

.contact-card {

    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

}

.contact-card h3 {

    color: #f97316;
    margin-bottom: 10px;

}

.contact-card p {

    color: #475569;

}

/* FORM + MAP */

.contact-container {

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.contact-form {

    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

}

.contact-form h3 {

    margin-bottom: 20px;
    color: #0f172a;

}

.contact-form input,
.contact-form textarea {

    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;

}

.contact-form button {

    background: #f97316;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;

}

.contact-form button:hover {

    background: #ea580c;

}

/* MAP */

.contact-map iframe {

    border-radius: 10px;

}

/* RESPONSIVE */

@media(max-width:992px) {

    .contact-info {

        grid-template-columns: repeat(2, 1fr);

    }

    .contact-container {

        grid-template-columns: 1fr;

    }

}

@media(max-width:600px) {

    .contact-info {

        grid-template-columns: 1fr;

    }

    .contact-title h2 {

        font-size: 28px;

    }

}

/* contact css end */