/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Top Header Styles */
.topHeader {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.topHeader .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topHeader .contact-info a:hover {
    color: #ffd700;
}

.topHeader .contact-info i {
    color: #ffd700;
}

.topHeader .social-icons a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.topHeader .social-icons a:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* Navigation Bar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72 !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: #ffd700;
    font-size: 1.8rem;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1e3c72 !important;
    background: rgba(30, 60, 114, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e3c72' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h23'/%3e%3c/svg%3e");
}

/* Book Now Button */
.nav-btn-book {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    color: #1e3c72 !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    margin-left: 15px !important;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-btn-book:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%) !important;
    color: #1e3c72 !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}

.nav-btn-book::after {
    display: none !important;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-section .min-vh-100 {
    min-height: calc(100vh - 60px);
}

.hero-content {
    padding: 40px 0;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 90%;
}

.hero-features {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-buttons .btn-primary {
    background: #ffd700;
    border: 2px solid #ffd700;
    color: #1e3c72;
    font-weight: 600;
    padding: 12px 35px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    font-weight: 600;
    padding: 12px 35px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-wrapper {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-image-wrapper i {
    font-size: 10rem;
    color: #ffd700;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* Hero Slider Styles */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider-layout {
    position: relative;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.dark-section {
    background: #1e3c72;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .section-title h3 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content .section-title h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-default {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-default:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-3px);
}

.btn-highlighted {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Add Swiper navigation for hero */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
}

.hero .swiper-pagination {
    bottom: 50px !important;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: #ffd700;
    border-color: #ffd700;
    width: 35px;
    border-radius: 6px;
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #1e3c72;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e3c72;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #ffd700;
    gap: 12px;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Us Section Styles */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    padding-right: 30px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tagline {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-list {
    margin-top: 20px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: translateX(5px);
}

.feature-point:hover span {
    color: #fff;
}

.feature-point:hover i {
    color: #ffd700;
}

.feature-point i {
    color: #1e3c72;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-point span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Stats Section */
.stats-container {
    padding: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.stat-card:hover::before {
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card>* {
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon i,
.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: #1e3c72;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Credentials Section Styles */
.credentials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.credentials-section .section-header {
    margin-bottom: 60px;
}

.credentials-section .section-desc {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.credentials-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.credentials-table {
    margin-bottom: 35px;
}

.credential-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.credential-row:hover {
    background: #f8f9fa;
    margin: 0 -40px;
    padding: 15px 40px;
}

.credential-row:last-child {
    border-bottom: none;
}

.credential-label {
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.95rem;
    min-width: 140px;
}

.credential-value {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.credentials-stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 10px;
}

.cred-stat-item {
    text-align: center;
    color: #fff;
}

.cred-stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffd700;
}

.cred-stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.credentials-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.3);
}

.image-wrapper>i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.9);
}

.cert-img {
    height: 100%;
    object-fit: cover;
}

.cert-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cert-badge i {
    font-size: 1.2rem;
    color: #1e3c72;
}

.cert-badge span {
    font-weight: 700;
    color: #1e3c72;
    font-size: 0.95rem;
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-section .section-header {
    margin-bottom: 60px;
}

.team-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.team-avatar {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-avatar i {
    font-size: 4rem;
    color: #1e3c72;
}

.team-social {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    bottom: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e3c72;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #fff;
    transform: scale(1.1);
}

.team-info {
    padding: 40px 25px 30px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.team-role {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-section .section-header {
    margin-bottom: 60px;
}

.services-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #1e3c72;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 70px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    background: #1e3c72;
    color: #fff;
    text-decoration: none;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Rate List Section Styles */
.rate-section {
    padding: 100px 0;
    background: #fff;
}

.rate-section .section-header {
    margin-bottom: 60px;
}

.rate-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.rate-section .section-desc {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 25px 30px;
    color: #fff;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.pricing-header i {
    color: #ffd700;
}

.pricing-table {
    padding: 10px 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: #f8f9fa;
}

.service-name {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.service-rate {
    font-weight: 700;
    color: #1e3c72;
    font-size: 1rem;
    background: #ffd700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.rate-cta-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    color: #fff;
}

.rate-cta-box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.rate-cta-box h4 i {
    color: #ffd700;
}

.rate-cta-box p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.btn-cta {
    background: #ffd700;
    color: #1e3c72;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Our Features Section Styles */
.our-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-content .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.features-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #1e3c72;
}

.feature-item-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left-color: #ffd700;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item-box:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-item-box:hover .feature-icon-wrap i {
    color: #1e3c72;
}

.feature-item-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.feature-item-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image-wrapper {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.3);
    animation: float 3s ease-in-out infinite;
}

.features-image-wrapper>i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
}

.features-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.features-badge i {
    font-size: 1.2rem;
    color: #1e3c72;
}

.features-badge span {
    font-weight: 700;
    color: #1e3c72;
    font-size: 1rem;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-section .section-header {
    margin-bottom: 60px;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.testimonials-section .section-desc {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ffd700;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: #fff;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-section .section-header {
    margin-bottom: 60px;
}

.blog-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.blog-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ffd700;
}

.blog-image {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image i {
    font-size: 4rem;
    color: #fff;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.2rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-btn {
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    color: #ffd700;
    gap: 12px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-section .section-header {
    margin-bottom: 60px;
}

.gallery-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
}

/* Branches Section Styles */
.branches-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.branches-section .section-header {
    margin-bottom: 60px;
}

.branches-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.branch-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.branch-icon {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.branch-city {
    font-size: 1.3rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 15px;
}

.branch-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.branch-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn-branch {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-call {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.btn-call:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #ffd700;
}

.btn-map {
    background: #f0f0f0;
    color: #1e3c72;
    border: 2px solid #1e3c72;
}

.btn-map:hover {
    background: #1e3c72;
    color: #fff;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-section .section-header {
    margin-bottom: 60px;
}

.contact-section .section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.1);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.95rem;
    color: #666;
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0 30px;
    color: #fff;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-5px);
}

.footer-social i {
    font-size: 1.1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-licensing {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-licensing .footer-title {
    text-align: center;
    margin-bottom: 20px;
}

.footer-licensing .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-licensing .footer-links li {
    margin: 0;
}

/* Swiper Custom Styles */
.team-swiper {
    padding: 20px 0 60px 0;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #1e3c72;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ffd700;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles */

/* Tablet Styles (768px - 991px) */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-radius: 8px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-image-wrapper i {
        font-size: 7rem;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-content .section-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon i {
        font-size: 2rem;
    }

    .credentials-section {
        padding: 70px 0;
    }

    .credentials-section .section-header {
        margin-bottom: 40px;
    }

    .credentials-content {
        padding: 30px;
        margin-bottom: 30px;
    }

    .credential-row:hover {
        margin: 0 -30px;
        padding: 15px 30px;
    }

    .services-section {
        padding: 70px 0;
    }

    .services-section .section-header {
        margin-bottom: 50px;
    }

    .services-section .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .rate-section {
        padding: 70px 0;
    }

    .rate-section .section-header {
        margin-bottom: 50px;
    }

    .rate-section .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-header {
        padding: 20px 25px;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .pricing-row {
        padding: 12px 25px;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service-rate {
        font-size: 0.9rem;
        padding: 4px 10px;
    }

    .rate-cta-box {
        padding: 30px;
    }

    .rate-cta-box h4 {
        font-size: 1.2rem;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .our-features-section {
        padding: 70px 0;
    }

    .features-content .section-title {
        font-size: 1.9rem;
    }

    .features-text {
        font-size: 1rem;
    }

    .feature-item-box {
        padding: 20px;
    }

    .features-image-wrapper {
        width: 350px;
        height: 350px;
    }

    .features-image-wrapper>i {
        font-size: 8rem;
    }

    .features-badge {
        padding: 12px 25px;
    }

    .features-badge span {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .team-section {
        padding: 70px 0;
    }

    .team-section .section-header {
        margin-bottom: 50px;
    }

    .team-section .section-title {
        font-size: 2rem;
    }

    .team-card {
        margin-bottom: 30px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar i {
        font-size: 3rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .image-wrapper {
        width: 320px;
        height: 320px;
    }

    .image-wrapper>i {
        font-size: 9rem;
    }

    .cred-stat-number {
        font-size: 1.4rem;
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-brand i {
        font-size: 1.5rem;
    }

    .navbar-collapse {
        padding: 15px;
    }

    .topHeader {
        text-align: center;
    }

    .topHeader .contact-info span {
        display: block;
        margin-bottom: 8px;
    }

    .topHeader .social-icons {
        margin-top: 10px;
        text-align: center !important;
    }

    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-section .min-vh-100 {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 20px 0;
        order: 2;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
        gap: 15px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .hero-image-wrapper i {
        font-size: 5rem;
    }

    .hero-wave svg {
        height: 80px;
    }

    .features-section {
        padding: 50px 0;
    }

    .feature-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-desc {
        font-size: 1rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title {
        font-size: 1.7rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
        text-align: left;
    }

    .feature-point {
        padding: 10px 12px;
    }

    .feature-point span {
        font-size: 0.9rem;
    }

    .stats-container {
        padding: 10px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon i {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .credentials-section {
        padding: 50px 0;
    }

    .credentials-section .section-desc {
        font-size: 1rem;
    }

    .credentials-content {
        padding: 25px;
    }

    .credential-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .credential-row:hover {
        margin: 0 -25px;
        padding: 15px 25px;
    }

    .credential-value {
        text-align: left;
        font-size: 0.9rem;
    }

    .image-wrapper {
        width: 280px;
        height: 280px;
    }

    .image-wrapper>i {
        font-size: 7rem;
    }

    .cert-badge {
        padding: 10px 20px;
    }

    .cert-badge span {
        font-size: 0.85rem;
    }

    .credentials-stats {
        padding: 20px 15px;
    }

    .cred-stat-number {
        font-size: 1.3rem;
    }

    .cred-stat-label {
        font-size: 0.75rem;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-section .section-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    .rate-section {
        padding: 50px 0;
    }

    .rate-section .section-title {
        font-size: 1.7rem;
    }

    .pricing-card {
        margin-bottom: 25px;
    }

    .pricing-header {
        padding: 18px 20px;
    }

    .pricing-header h3 {
        font-size: 1.15rem;
    }

    .pricing-row {
        padding: 12px 20px;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service-rate {
        font-size: 0.85rem;
        padding: 4px 8px;
    }

    .rate-cta-box {
        padding: 25px;
        text-align: center;
    }

    .rate-cta-box h4 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .rate-cta-box p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .our-features-section {
        padding: 50px 0;
    }

    .features-content .section-title {
        font-size: 1.7rem;
    }

    .features-text {
        font-size: 0.95rem;
    }

    .feature-item-box {
        padding: 18px;
        gap: 15px;
    }

    .feature-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .feature-icon-wrap i {
        font-size: 1.3rem;
    }

    .feature-item-content h4 {
        font-size: 1.05rem;
    }

    .feature-item-content p {
        font-size: 0.9rem;
    }

    .features-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .features-image-wrapper>i {
        font-size: 6rem;
    }

    .features-badge {
        padding: 10px 20px;
        bottom: 20px;
    }

    .features-badge span {
        font-size: 0.85rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .section-title {
        font-size: 1.7rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .blog-section .section-title {
        font-size: 1.7rem;
    }

    .blog-card {
        padding: 25px 20px;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-image {
        height: 160px;
    }

    .blog-image i {
        font-size: 3rem;
    }

    .team-card {
        margin-bottom: 25px;
    }

    .team-image {
        padding: 30px 20px 25px;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
    }

    .team-avatar i {
        font-size: 2.5rem;
    }

    .team-info {
        padding: 35px 20px 25px;
    }

    .team-name {
        font-size: 1.15rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .team-desc {
        font-size: 0.9rem;
    }

    .team-social {
        opacity: 1;
        bottom: 10px;
    }

    .team-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles (up to 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .hero-image-wrapper i {
        font-size: 4rem;
    }

    .hero-wave svg {
        height: 60px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .feature-icon i {
        font-size: 1.7rem;
    }

    .feature-title {
        font-size: 1.15rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-content .section-title {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .feature-point {
        margin-bottom: 12px;
        padding: 10px;
    }

    .feature-point span {
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-section .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .rate-section {
        padding: 40px 0;
    }

    .rate-section .section-title {
        font-size: 1.5rem;
    }

    .pricing-header {
        padding: 15px 18px;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
    }

    .pricing-row {
        padding: 10px 18px;
    }

    .service-name {
        font-size: 0.85rem;
    }

    .service-rate {
        font-size: 0.8rem;
        padding: 3px 8px;
    }

    .rate-cta-box {
        padding: 20px;
    }

    .rate-cta-box h4 {
        font-size: 1.1rem;
    }

    .rate-cta-box p {
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .credentials-section {
        padding: 40px 0;
    }

    .credentials-content {
        padding: 20px;
    }

    .credential-row {
        padding: 12px 0;
    }

    .credential-row:hover {
        margin: 0 -20px;
        padding: 12px 20px;
    }

    .credential-label {
        font-size: 0.9rem;
        min-width: auto;
    }

    .credential-value {
        font-size: 0.85rem;
    }

    .image-wrapper {
        width: 240px;
        height: 240px;
    }

    .image-wrapper>i {
        font-size: 6rem;
    }

    .cert-badge {
        padding: 8px 15px;
        bottom: 15px;
    }

    .cert-badge span {
        font-size: 0.8rem;
    }

    .credentials-stats {
        padding: 15px 10px;
    }

    .cred-stat-number {
        font-size: 1.1rem;
    }

    .cred-stat-label {
        font-size: 0.7rem;
    }

    .our-features-section {
        padding: 40px 0;
    }

    .features-content .section-title {
        font-size: 1.5rem;
    }

    .features-text {
        font-size: 0.9rem;
    }

    .feature-item-box {
        padding: 15px;
        gap: 12px;
    }

    .feature-icon-wrap {
        width: 45px;
        height: 45px;
    }

    .feature-icon-wrap i {
        font-size: 1.2rem;
    }

    .feature-item-content h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-item-content p {
        font-size: 0.85rem;
    }

    .features-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .features-image-wrapper>i {
        font-size: 5rem;
    }

    .features-badge {
        padding: 8px 15px;
        bottom: 15px;
    }

    .features-badge span {
        font-size: 0.8rem;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .section-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-avatar i {
        font-size: 1.2rem;
    }

    .gallery-section {
        padding: 50px 0;
    }

    .gallery-section .section-title {
        font-size: 1.7rem;
    }

    .gallery-image {
        height: 180px;
    }

    .gallery-image i {
        font-size: 3.5rem;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .section-title {
        font-size: 1.7rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-item {
        padding: 20px;
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .blog-section {
        padding: 70px 0;
    }

    .blog-section .section-title {
        font-size: 2rem;
    }

    .blog-card {
        padding: 25px 15px;
    }

    .blog-title {
        font-size: 0.9rem;
    }

    .blog-image {
        height: 120px;
    }

    .blog-image i {
        font-size: 2.2rem;
    }

    .blog-content {
        padding: 20px;
    }

    .team-section {
        padding: 40px 0;
    }

    .team-section .section-title {
        font-size: 1.5rem;
    }

    .team-card {
        margin-bottom: 20px;
    }

    .team-image {
        padding: 25px 15px 20px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-avatar i {
        font-size: 2rem;
    }

    .team-info {
        padding: 30px 15px 20px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .team-desc {
        font-size: 0.85rem;
    }

    .team-social a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* Large Desktop Styles (1400px and above) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-image-wrapper {
        width: 400px;
        height: 400px;
    }

    .hero-image-wrapper i {
        font-size: 12rem;
    }

    .about-content .section-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon i {
        font-size: 3rem;
    }

    .services-section {
        padding: 120px 0;
    }

    .services-section .section-title {
        font-size: 3rem;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-desc {
        font-size: 1rem;
    }

    .service-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .rate-section {
        padding: 120px 0;
    }

    .rate-section .section-title {
        font-size: 3rem;
    }

    .pricing-header {
        padding: 30px 35px;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-row {
        padding: 18px 35px;
    }

    .service-name {
        font-size: 1.05rem;
    }

    .service-rate {
        font-size: 1.1rem;
        padding: 6px 15px;
    }

    .rate-cta-box {
        padding: 50px;
    }

    .rate-cta-box h4 {
        font-size: 1.6rem;
    }

    .rate-cta-box p {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .our-features-section {
        padding: 120px 0;
    }

    .features-content .section-title {
        font-size: 2.8rem;
    }

    .features-text {
        font-size: 1.15rem;
    }

    .feature-item-box {
        padding: 30px;
        gap: 25px;
    }

    .feature-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .feature-icon-wrap i {
        font-size: 1.8rem;
    }

    .feature-item-content h4 {
        font-size: 1.3rem;
    }

    .feature-item-content p {
        font-size: 1.05rem;
    }

    .features-image-wrapper {
        width: 500px;
        height: 500px;
    }

    .features-image-wrapper>i {
        font-size: 12rem;
    }

    .features-badge {
        padding: 18px 35px;
        bottom: 40px;
    }

    .features-badge span {
        font-size: 1.1rem;
    }

    .testimonials-section {
        padding: 120px 0;
    }

    .testimonials-section .section-title {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 40px 35px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-rating i {
        font-size: 1.3rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .author-avatar i {
        font-size: 1.7rem;
    }

    .author-info h5 {
        font-size: 1.2rem;
    }

    .blog-section {
        padding: 120px 0;
    }

    .blog-section .section-title {
        font-size: 3rem;
    }

    .blog-card {
        padding: 40px 35px;
    }

    .blog-title {
        font-size: 1.4rem;
    }

    .blog-image {
        height: 240px;
    }

    .blog-image i {
        font-size: 5rem;
    }

    .blog-content {
        padding: 40px;
    }

    .gallery-section {
        padding: 120px 0;
    }

    .gallery-section .section-title {
        font-size: 3rem;
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-image i {
        font-size: 6rem;
    }

    .gallery-overlay h4 {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 120px 0;
    }

    .contact-section .section-title {
        font-size: 3rem;
    }

    .contact-form-wrapper {
        padding: 50px;
    }

    .contact-info-item {
        padding: 40px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.7rem;
    }

    .contact-details h4 {
        font-size: 1.3rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .footer-section {
        padding: 100px 0 40px;
    }

    .footer-logo {
        font-size: 1.7rem;
    }

    .footer-desc {
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .team-section {
        padding: 120px 0;
    }

    .team-section .section-title {
        font-size: 3rem;
    }

    .team-avatar {
        width: 140px;
        height: 140px;
    }

    .team-avatar i {
        font-size: 5rem;
    }

    .team-info {
        padding: 50px 30px 35px;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-role {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .team-desc {
        font-size: 1.1rem;
    }

    .team-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Enquiry Popup Styles */
.enquiry-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.enquiry-popup-overlay.show {
    display: flex;
}

.enquiry-popup-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e3c72;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #ffd700;
    color: #fff;
    transform: rotate(90deg);
}

.enquiry-popup-title {
    font-size: 1.8rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 10px;
}

.enquiry-popup-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.enquiry-popup-form .form-control,
.enquiry-popup-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.enquiry-popup-form .form-control:focus,
.enquiry-popup-form .form-select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.enquiry-popup-form .form-control::placeholder {
    color: #999;
}

.enquiry-popup-form .btn-default {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-popup-form .btn-default:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.3);
}

.enquiry-popup-help {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.enquiry-popup-help a {
    color: #ffd700;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.enquiry-popup-help a:hover {
    color: #1e3c72;
}

/* Floating Contact Buttons */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    bottom: 30px;
}

/* Left Side Floating Buttons */
.floating-contact-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-call {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    left: 20px;
    bottom: 100px;
}

.floating-call:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 60, 114, 0.3);
}

.floating-whatsapp {
    background: #25d366;
    left: 20px;
    bottom: 30px;
}

.floating-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

/* Right Side Back to Top Button */
.floating-top-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72 !important;
    right: 20px;
    bottom: 30px;
    display: none;
    font-weight: 700;
}

.floating-top-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    color: #1e3c72 !important;
}

.floating-top-btn.show {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-contact-left {
        left: 10px;
        bottom: 20px;
        gap: 10px;
    }

    .floating-call {
        bottom: 80px;
        left: 10px;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 10px;
    }

    .floating-top-btn {
        right: 10px;
        bottom: 20px;
    }
}