@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Montserrat", sans-serif;

}


h2,
h3,
h4,
h5 {
    font-family: 'montserrat', sans-serif;
    color: #0F172A;
    font-weight: 600;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    height: 44px;
}

/* ================= NAVBAR ================= */
/* ===========================
   NAVBAR BASE
=========================== */
.navbar {
    top: 44px;
    transition: all 0.4s ease;
    padding: 15px 0;
    backdrop-filter: blur(6px);
    z-index: 999;
}

/* Navbar when scrolled */
.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

/* ===========================
   TOGGLER
=========================== */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled .navbar-toggler {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
}

/* ===========================
   BRAND
=========================== */
.navbar-brand {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    transition: 0.3s;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s;
}

.navbar.scrolled .navbar-brand {
    color: #0d6efd !important;
}

.navbar.scrolled .brand-subtitle {
    color: #6c757d !important;
}

/* ===========================
   NAV LINKS
=========================== */
.navbar-nav .nav-link {
    color: #ffffff !important;
    position: relative;
    font-weight: 500;
    padding: 10px 16px !important;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffffff !important;
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 16px;
    bottom: 4px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    width: calc(100% - 32px);
}

/* After scroll */
.navbar.scrolled .navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link:focus {
    color: #0d6efd !important;
}

.navbar.scrolled .navbar-nav .nav-link::after {
    background: #0d6efd;
}

/* ===========================
   DROPDOWN
=========================== */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    margin-top: 14px;
    overflow: hidden;
}

.dropdown-item {
    padding: 11px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

/* Dropdown arrow */
.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ===========================
   MOBILE NAVBAR
=========================== */
@media (max-width: 991.98px) {
    .navbar {
        top: 44px;
        padding: 12px 0;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 14px;
        margin-top: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #000000 !important;
        margin: 0;
        padding: 12px 0 !important;
        width: 100%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #0d6efd !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 14px;
        margin-top: 0;
        min-width: 100%;
    }

    .dropdown-item {
        color: #333333;
        padding: 10px 0;
        font-size: 14px;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: transparent;
        color: #0d6efd;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .dropdown.show .dropdown-toggle::after,
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

/* ===========================
   SMALL DEVICES
=========================== */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .navbar-toggler {
        padding: 7px 9px;
    }
}

/* homepage css  start */


/* Section spacing */
section {
    padding: 110px 0;
}

/* ======================= */

/* =========================
   HERO SECTION PREMIUM
========================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100vh;
    min-height: 650px;
}

/* SLIDE */
.animeslide-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    transform: scale(1);
    transition: transform 8s ease;
}

/*  overlay */
.animeslide-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 198, 255, 0.3), transparent 50%),
        linear-gradient(120deg, rgba(10, 20, 60, 0.9), rgba(13, 110, 253, 0.3));
    z-index: 1;
}

.swiper-slide-active.animeslide-slide {
    transform: scale(1.1);
}

/* CONTENT */
.animeslide-slide .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    padding: 0 40px;
}

.animeslide-heading {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.animeslide-desc {
    font-size: 18px;
    max-width: 600px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 28px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.hero-btn:hover::before {
    left: 120%;
}

.hero-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

[data-animate] {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: all 1.2s ease;
}

.swiper-slide-active [data-animate] {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
}

@media (max-width: 768px) {

    .swiper {
        height: 75vh;
        min-height: 555px;
    }

    .swiper-pagination {
        text-align: right;
    }

    .animeslide-slide .container {
        top: 50px;
    }

    .animeslide-heading {
        font-size: 34px;
    }

    .animeslide-desc {
        font-size: 15px;
        padding: 14px 18px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}



/* ==========hero homapege============== */

/* =============================
   HOME ABOUT SECTION
============================= */

.home-about {
    padding: 100px 0;
    background: linear-gradient(to right, #F8FAFC, #EEF2FF);
    position: relative;
    overflow: hidden;
}

.home-about h2 {
    font-weight: 700;
    font-size: 36px;
}


.about-tag {
    display: inline-block;
    background: #E0F2FE;
    color: #0369A1;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.about-img-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: .4s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 200px;
}

.about-floating-card h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.about-floating-card span {
    font-size: 13px;
    opacity: 0.9;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    white-space: nowrap;
}

.about-highlight i {
    color: #0d6efd;
    font-size: 16px;
}


.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.4);
    color: #fff;
}

.premium-btn i {
    transition: transform .3s ease;
}

.premium-btn:hover i {
    transform: translateX(5px);
}

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

/* Tablet */
@media (max-width: 992px) {

    .home-about {
        padding: 80px 0;
        overflow: hidden;
    }

    .home-about h2 {
        font-size: 28px;
    }

    .about-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .about-highlight {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .home-about {
        padding: 60px 0;
    }

    .about-highlight {
        width: 100%;
        justify-content: center;
    }

    .about-floating-card {
        max-width: 100%;
    }
}


/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

.icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    transition: .3s;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* ===== TIMETABLE CARD ===== */
.timetable-card {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timetable-card h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.schedule-btn {
    display: inline-block;
    padding: 14px 25px;
    background: white;
    color: #0d6efd;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.schedule-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* ================= WHY CHOOSE SECTION ================= */
.why-section {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
    padding: 100px 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 45px 30px;
    border-radius: 25px;
    transition: all .4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.15);
}

.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    font-size: 35px;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
    transition: .4s;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ================= COUNTER SECTION ================= */
.counter-section {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 90px 0;
}

.counter-box {
    padding: 30px;
}

.counter {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
}

.counter-box p {
    opacity: 0.85;
    font-size: 16px;
}

/* ================= TESTIMONIALS ================= */
.testimonial-section {
    padding: 100px 0;
    background: #f8fbff;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 30px;
    position: relative;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card::before {
    content: "“";
    font-size: 80px;
    color: #e9f2ff;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.15);
}

.testimonial-card h6 {
    margin-top: 25px;
    font-weight: 600;
    color: #0d6efd;
}

/* ================= PREMIUM CTA ================= */
.cta {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(30, 60, 114, 0.95)),
        url('https://images.unsplash.com/photo-1580281658629-6e8c1d7b4e1d') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.cta h2 {
    font-weight: 700;
    font-size: 40px;
}

.cta .btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.cta .btn:hover {
    background: black;
    color: white;
    transform: translateY(-5px);
}


/* homepage css end */


/* about page start */


.about-hero {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
}

.doc-image {
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.bio-section {
    padding: 120px 0;
    background: linear-gradient(to right, #F8FAFC, #EEF2FF);
    position: relative;
}

.section-tag {
    background: #E0F2FE;
    color: #0369A1;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.doc-image {
    width: 100%;
    border-radius: 25px;
    transition: .4s;
}

.image-wrapper:hover .doc-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    /* background:linear-gradient(135deg,#0E7490,#06B6D4); */
    background: linear-gradient(135deg, #0d6efd, #1e3c72);

    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.experience-badge span {
    font-size: 14px;
    opacity: 0.9;
}

.qualification-box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.qual-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.qual-item:hover {
    transform: translateY(-5px);
}

.qual-item i {
    font-size: 28px;
    color: #0E7490;
}

.qual-item h6 {
    margin: 0;
    font-weight: 600;
}

.qual-item p {
    margin: 0;
    font-size: 14px;
    color: #64748B;
}

@media(max-width:992px) {
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}


.stat-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #0d6efd;
}

.special-card {
    padding: 35px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: 0.3s;
    height: 100%;
}

.special-card:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-8px);
}

.special-card:hover i,
.special-card:hover h5 {
    color: white !important;
}

.timeline-section {
    padding: 120px 0;
    background: #F1F5F9;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #0E7490, #06B6D4);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #0E7490;
    border: 4px solid white;
    top: 35px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.timeline-content h5 {
    color: #0F172A;
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        margin-bottom: 40px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 10px;
        right: auto;
    }

}

.about-cta {
    background: #0F172A;
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 30px;
}

.about-cta h2 {
    color: white;
}

/* about end */


/* services page start */

/* SERVICE HERO */
.service-hero {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.service-hero h1 {
    letter-spacing: 1px;
    color: #fff
}

.service-hero p {
    max-width: 700px;
    margin: auto;
    opacity: 0.95;
}


/* ================= SERVICE CARD ================= */

.service-card {
    background: white;
    padding: 45px;
    border-radius: 18px;
    transition: .3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(14, 116, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 30px;
    color: #0E7490;
    margin-bottom: 25px;
}

/* ================= PROCESS ================= */

.process {
    background: white;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.process-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0E7490;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.cta {
    background: #0F172A;
    color: white;
    text-align: center;
    padding: 90px 0;
}

.cta h2 {
    color: white;
}

/* services page end */


/* testimonials page start*/


/* TESTIMONIAL HERO */
.testimonial-hero {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -90px;
    right: -90px;
}

.testimonial-hero::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -70px;
    left: -70px;
}

.testimonial-hero h1 {
    letter-spacing: 1px;
    color: #fff;
}

.testimonial-hero p {
    max-width: 680px;
    margin: auto;
    opacity: 0.95;
}

.featured-review {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 40px;
    color: #0E7490;
    margin-bottom: 20px;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    transition: .3s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.reviewer {
    margin-top: 20px;
    font-weight: 600;
    color: #0F172A;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.rating-section {
    background: white;
    text-align: center;
}

.rating-number {
    font-size: 60px;
    font-weight: 700;
    color: #0E7490;
}

/* CTA */

.cta {
    background: #0F172A;
    color: white;
    text-align: center;
    padding: 90px 0;
}

.cta h2 {
    color: white;
}

/* testimonials page end*/

/* ---gallery start---- */

.gallery-hero {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.gallery-hero h1 {
    letter-spacing: 1px;
    color: #fff
}

.gallery-hero p {
    max-width: 700px;
    margin: auto;
    opacity: 0.95;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
    background: #f4f7fc;
}

.gallery-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
    background: #fff;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    /* height: 260px; */
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 110, 253, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay h6 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

@media(max-width:768px) {
    .gallery-section {
        padding: 70px 0;
    }

    /* .gallery-card img {
        height: 220px;
    } */
}

.gallery-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
}

.gallery-card:nth-child(2) {
    animation-delay: .1s
}

.gallery-card:nth-child(3) {
    animation-delay: .2s
}

.gallery-card:nth-child(4) {
    animation-delay: .3s
}

.gallery-card:nth-child(5) {
    animation-delay: .4s
}

.gallery-card:nth-child(6) {
    animation-delay: .5s
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ------gallery end------ */
/* contact page start */


/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.contact-hero h1 {
    letter-spacing: 1px;
    color: #fff;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    opacity: 0.95;
}




.info-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-info .icon-box {
    width: 70px;
    height: 70px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #0E7490;
    margin-bottom: 20px;
}

.contact-premium {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    padding: 120px 0;
}

.contact-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(13, 110, 253, 0.08);
    transition: .4s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(13, 110, 253, 0.15);
}

.premium-input {
    border-radius: 50px;
    padding: 15px 25px;
    border: 1px solid #e2e8f0;
    transition: .3s;
}

.premium-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

textarea.premium-input {
    border-radius: 25px;
}

.map-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    transition: .4s;
    height: 100%;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(13, 110, 253, 0.15);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
}

.btn-submit-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .5px;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #1e3c72);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.35);
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.45);
}

.btn-submit-premium:active {
    transform: scale(.97);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.btn-submit-premium:focus {
    outline: none;
}

.btn-submit-premium i {
    transition: transform .3s ease;
}

.btn-submit-premium:hover i {
    transform: translateX(6px);
}

.btn-submit-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: .6s;
}

.btn-submit-premium:hover::before {
    left: 100%;
}

.emergency {
    background: #0F172A;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.emergency h3,
.emergency h4 {
    color: white;
}

/* contact page end */

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

.site-footer {
    background: linear-gradient(135deg, #0d1b3d, #1e3c72);
    color: #fff;
    padding: 80px 0 0;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-text {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: .3s;
}

.footer-links a:hover {
    color: #00c6ff;
    padding-left: 5px;
}

.footer-contact {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: .3s;
}

.footer-social a:hover {
    background: #00c6ff;
    transform: translateY(-4px);
}


.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer-btn:hover {
    transform: translateY(-3px);
}


.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.8;
}


@media(max-width:768px) {
    .site-footer {
        padding: 60px 0 0;
    }
}



@media screen and (max-width: 767px) {
    .hero {
        background-size: cover !important;
        padding: 0px 0;
    }

    .home-about {
        padding: 70px 0;
    }

    .about-highlight i {
        font-size: 20px;
    }

    .services-section {
        overflow: hidden;
    }

    .services-section .icon-box {
        margin: 20px 0;
    }

    /* about page */
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-item.right::before {
        left: 10px;
    }

    .about-cta {
        padding: 60px 15px;
    }

    .bio-section {
        padding: 70px 0;
        overflow: hidden;
    }

    section {
        padding: 70px 0;
    }

    .qual-item {
        width: 100%;
    }

    /* services */
    .service-card {
        padding: 45px 15px;
        text-align: left;
    }

    /* testimonials */

    .featured-review {
        padding: 20px;
    }

    .contact-premium {
        padding: 70px 0;
        overflow: hidden;
    }

    .contact-card {
        padding: 50px 15px;
    }
}

/*gall*/

.feature{
    width: 100%;
    padding:50px 0 50px;
}


.feature .heading h6{
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 14px;
    padding:8px 0 8px;
}
.feature .separator{
    width: 50px;
    height: 2px;
    margin-bottom: 50px;
    background-color: #555555;
    display: inline-block;
}
.feature-main{
    width: 100%;
    border-bottom: 2px solid transparent;
    background-color: #f9f9f9;
    padding-bottom: 20px;
}

.feature .feature-box img{
    width: 100%;
    height: auto;   
}
.feature .feature-head{
    text-align: center;
    padding: 10px 15px;
    border-top: none;
}
.feature .feature-head p{
    font-size: 14px;
    color: #333;
    font-weight: 600;
}


@media all and (max-width: 767px){
    .feature-main{
        margin-bottom: 15px;
    }
}

