/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Navbar Styles */
.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-navbar .navbar {
    padding: 1rem 0;
}

/* Brand Styling */
.navbar-brand {
    text-decoration: none !important;
    margin-right: 2rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.brand-icon i {
    color: white;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-brand:hover .brand-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Desktop Navigation Pills */
.navbar-nav-desktop {
    flex: 1;
    justify-content: center;
}

.nav-pills {
    display: flex;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 50px;
    padding: 10px;
    gap: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    list-style: none !important ;
    flex-wrap: unset !important;
}

.nav-pill {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-pill i {
    margin-right: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-pill:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.nav-pill.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.nav-pill.active i {
    transform: scale(1.1);
}

/* Right Side Actions */
.navbar-actions {
    gap: 1rem;
}

.language-wrapper {
    position: relative;
}

/* CTA Button */
.btn-cta {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: #64748b;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle:hover .toggle-line {
    background: #3b82f6;
}

/* Mobile Offcanvas */
.offcanvas {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    color: black;
    border: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    min-height: 80px;
}

.mobile-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-brand i {
    color: #2c3e50;  
    margin-right: 0.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    font-size: 1.2rem;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: black;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: black;
    transform: translateX(8px);
}

.mobile-nav-item i:first-child {
    width: 20px;
    margin-right: 12px;
}

.mobile-nav-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav-item i:last-child {
    opacity: 0.6;
    font-size: 0.8rem;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-mobile-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Navbar Spacer */
.navbar-spacer-new {
    height: 90px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .nav-pills {
        gap: 2px;
    }
    
    .nav-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .modern-navbar .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        order: 1;
        flex: 1;
    }
    
    .navbar-actions {
        order: 2;
        margin-left: auto;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
    }
    
    .brand-icon i {
        font-size: 1.25rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .navbar-spacer-new {
        height: 75px;
    }
}

@media (max-width: 576px) {
    .modern-navbar .navbar {
        padding: 0.5rem 0;
    }
    
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-brand {
        order: 1;
        flex: 1;
    }
    
    .navbar-actions {
        order: 2;
        margin-left: auto;
        justify-content: flex-end;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-icon {
        margin-right: 0;
    }
    
    .navbar-spacer-new {
        height: 65px;
    }
    
    .offcanvas {
        width: 100% !important;
    }
}

/* Hero Section */
.hero {
    background-image: url(../img/Fly01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 3.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-content button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 180px;
}

.hero-content button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content button:active {
    transform: translateY(-1px);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border-color: #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Blog Preview Section */
.blog-preview {
    padding: 6rem 0;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.5rem;
}

.post-content h3 a {
    text-decoration: none;
    color: #2c3e50;
}

.post-content h3 a:hover {
    color: #3498db;
}

.post-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.post-category {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* What Makes Us Different Section */
.what-makes-different {
    padding: 2rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.modern-card {
    height: 280px;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-card {
    background: #212f41cc;
    color: white;
}

.gradient-card.purple-gradient {
    background: #212f41cc;
}

.gradient-card.blue-gradient {
    background: #212f41cc;
}

.image-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #212f41cc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.card-content {
    text-align: center;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modern-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #212f41cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: #212f41;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212f41cc;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #212f41cc;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Modern Cards */
@media (max-width: 1024px) {
    .modern-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-makes-different {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .modern-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .modern-card {
        height: 240px;
        padding: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .modern-card h3 {
        font-size: 1.3rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .modern-card {
        height: 200px;
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        order: 1;
        flex-grow: 1;
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        margin: 1rem -15px 0 -15px;
        padding: 1.5rem 15px;
        border: none;
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: left;
    }
    
    .navbar-spacer {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .navbar-collapse {
        margin: 1rem -20px 0 -20px;
        padding: 1.5rem 20px;
    }
    
    .navbar-spacer {
        height: 65px;
    }
}

.home1-about-section .section-vector1 {
    position: absolute;
    left: 0;
    max-width: 100%;
    height: auto;
}

.home1-about-section {
    position: relative;
    margin-top: 110px !important;
    font-family: "Poppins", sans-serif;

}

.section-title span {
    font-family: "Satisfy", sans-serif;
    color: #63AB45;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-title span svg {
    fill: #63AB45;
}

.section-title h2 {
    color: #63AB45;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10PX;
    font-family: "Poppins", sans-serif;
}

.home1-about-section .about-content .nav-pills {
    gap: 60px;
    margin-bottom: 25px;
    margin-top: 25px;

}

.home1-about-section .about-content .nav-pills .nav-link.active {
    color: #63AB45;
}

.home1-about-section .about-content .nav-pills .nav-link {
    background-color: transparent;
    padding: 0;
    color: #787878;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home1-about-section .about-content .tab-content {
    margin-bottom: 45px;
}

.home1-about-section .about-content .about-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.primary-btn1 {
    border-radius: 5px;
    background-color: #63AB45;

    font-weight: 600;
    font-size: 16px;
    color: white;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    line-height: 1;
    padding: 16px 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    text-decoration: none;
}

.home1-about-section .about-content .about-content-bottom .counter-area {
    display: flex;
    gap: 8px;
}

.home1-about-section .about-content .about-content-bottom .counter-area .content .number {
    display: flex;
}

.home1-about-section .about-content .about-content-bottom .counter-area .content .number h6,
.home1-about-section .about-content .about-content-bottom .counter-area .content .number span {
    color: black;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.home1-about-section .about-content .about-content-bottom .counter-area .content .number h6,
.home1-about-section .about-content .about-content-bottom .counter-area .content .number span {
    color: black;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.home1-about-section .about-content .about-content-bottom .counter-area .content p {
    color: #787878;
    font-family: var(--font-jost);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.42px;
    text-transform: capitalize;
    margin-bottom: 0;
}





/*=====================================
  10.Home1 Feature Card section
========================================*/
.feature-card {
    background-image: url(../img/feature-card-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 20px 20px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid #EEE;
    transition: 0.5s;
    height: 200px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-card {
        gap: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-card {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 20px 15px 20px 10px;
        gap: 10px;
    }
}

.feature-card .feature-card-icon {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #DDEED6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-card .feature-card-icon svg {
    fill: var(--primary-color1);
    transition: 0.5s;
}

.feature-card .feature-card-content h6 {
    color: var(--title-color);
    font-family: var(--font-rubik);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    margin-bottom: 12px;
    transition: 0.5s;
}

.feature-card .feature-card-content {
    text-align: center;
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-card .feature-card-content h6 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .feature-card .feature-card-content h6 {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

.feature-card .feature-card-content p {
    color: var(--text-color);
    font-family: var(--font-jost);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.45px;
    margin-bottom: 0;
    transition: 0.5s;
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-card .feature-card-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .feature-card .feature-card-content p {
        font-size: 14px;
    }
}

.feature-card:hover {
    box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.08);
}

.feature-card:hover .feature-card-icon {
    background-color: var(--primary-color1);
}

.feature-card:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.two {
    background-image: url(../img/feature-card-bg2.png);
}

.feature-card.two .feature-card-icon {
    background-color: #FEEED5;
}

.feature-card.two .feature-card-icon svg {
    fill: var(--primary-color2);
}

.feature-card.two:hover .feature-card-icon {
    background-color: var(--primary-color2);
}

.feature-card.two:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.three {
    background-image: url(../img/feature-card-bg3.png);
}

.feature-card.three .feature-card-icon {
    background-color: #F5F5D3;
}

.feature-card.three .feature-card-icon svg {
    fill: #D2D234;
}

.feature-card.three:hover .feature-card-icon {
    background-color: #D2D234;
}

.feature-card.three:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.style-2 {
    background-color: var(--white-color);
    background-image: unset;
    border: unset;
    box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.08);
    padding: 25px 28px;
}

@media (max-width: 576px) {
    .feature-card.style-2 {
        padding: 25px 20px;
    }
}

.feature-card.style-2 .feature-card-icon {
    min-width: unset;
    max-width: unset;
    height: unset;
    background-color: unset;
    border-radius: unset;
}

.feature-card.style-2 .feature-card-icon svg {
    fill: var(--primary-color1);
    transition: 0.5s;
}

.feature-card.style-2:hover {
    box-shadow: unset;
    background-color: var(--primary-color1);
}

.feature-card.style-2:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.style-2:hover .feature-card-content h6 {
    color: var(--white-color);
}

.feature-card.style-2:hover .feature-card-content p {
    color: var(--white-color);
}

.feature-card.style-2.secondary .feature-card-icon svg {
    fill: var(--primary-color2);
}

.feature-card.style-2.secondary:hover {
    background-color: var(--primary-color2);
}

.feature-card.style-2.secondary:hover svg {
    fill: var(--white-color);
}

.feature-card.style-3 {
    border: 1px solid #EEE;
    background: #E8F4E3;
    background-image: unset;
    flex-direction: column;
    padding: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-card.style-3 {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .feature-card.style-3 {
        padding: 15px;
    }
}

.feature-card.style-3 .feature-card-icon {
    min-width: unset;
    max-width: unset;
    height: unset;
    background-color: unset;
    border-radius: unset;
}

.feature-card.style-3 .feature-card-icon svg {
    fill: var(--primary-color1);
    transition: 0.5s;
}

.feature-card.style-3 .feature-card-icon.orange svg {
    fill: var(--primary-color2);
}

.feature-card.style-3 .feature-card-content {
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-card.style-3 .feature-card-content h6 {
        font-size: 17px;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .feature-card.style-3 .feature-card-content h6 {
        font-size: 17px;
        margin-bottom: 5px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-card.style-3 .feature-card-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .feature-card.style-3 .feature-card-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

.feature-card.style-3:hover {
    box-shadow: unset;
    background-color: var(--primary-color1);
}

.feature-card.style-3:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.style-3:hover .feature-card-content h6 {
    color: var(--white-color);
}

.feature-card.style-3:hover .feature-card-content p {
    color: var(--white-color);
}

.feature-card.style-3.olive-bg {
    background-color: #E7EDDB;
}

.feature-card.style-3.olive-bg .feature-card-icon svg {
    fill: #90A955;
}

.feature-card.style-3.olive-bg:hover {
    background-color: #90A955;
}

.feature-card.style-3.olive-bg:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.style-3.orange-bg {
    background-color: #FEEED5;
}

.feature-card.style-3.orange-bg .feature-card-icon svg {
    fill: var(--primary-color2);
}

.feature-card.style-3.orange-bg:hover {
    background-color: var(--primary-color2);
}

.feature-card.style-3.orange-bg:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card.style-3.yellow-bg {
    background-color: #F5F5D3;
}

.feature-card.style-3.yellow-bg .feature-card-icon svg {
    fill: #D2D234;
}

.feature-card.style-3.yellow-bg:hover {
    background-color: #D1D133;
}

.feature-card.style-3.yellow-bg:hover .feature-card-icon svg {
    fill: var(--white-color);
}

.feature-card-section {
    position: relative;
    margin-bottom: 50px;
}

.feature-card-section .pt-15 {
    padding-top: 15px;
}

@media (max-width: 1199px) {
    .feature-card-section .pt-15 {
        padding-top: 0;
    }
}

.feature-card-section .mb-80 {
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .feature-card-section .mb-80 {
        margin-bottom: 70px;
    }
}

.feature-card-section .section-vector4 {
    position: absolute;
    top: -40%;
    right: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .feature-card-section .section-vector4 {
        top: -30%;
    }
}

@media (max-width: 991px) {
    .feature-card-section .section-vector4 {
        top: -15%;
    }
}

@media (max-width: 576px) {
    .feature-card-section .section-vector4 {
        top: -10%;
    }
}

.feature-card-section .banner4-slider-wrapper .banner4-card-slide .swiper-slide-active span {
    animation: fadeInDown 1.5s;
}

.feature-card-section .banner4-slider-wrapper .banner4-card-slide .swiper-slide-active h3 {
    animation: fadeInDown 1.5s;
}

.feature-card-section .banner4-slider-wrapper .banner4-card-slide .swiper-slide-active .text {
    animation: fadeInDown 1.5s;
}

.feature-card-section .banner4-slider-wrapper .banner4-card-slide .swiper-slide-active .primary-btn1 {
    animation: fadeInUp 1.5s;
}

.feature-card-section .banner4-slider-wrapper .package-card3-slide {
    padding: 10px;
    margin: -10px;
    padding-left: 0;
    margin-left: 0;
}



/*=====================================
  Testimonial Slider Section
========================================*/
.testimonial-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-section .section-vector4 {
    position: absolute;
    top: -40%;
    right: 0;
    z-index: -1;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 10px;
}

.testimonial-card {
    width: calc(48%);
    flex-shrink: 0;
    position: relative;
}

/* Testimonial Card Redesign - Google Style */
.testimonial-card .feature-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    background-image: none;
}

.testimonial-card .feature-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Quote Section */
.testimonial-card .testimonial-quote {
    font-size: 16px;
    line-height: 1.5;
    color: #3c4043;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
}

/* Rating and Google Section */
.testimonial-card .rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card .rating-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-card .rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
}

.testimonial-card .rating i {
    color: #fbbc04;
    font-size: 14px;
}

.testimonial-card .google-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
}

.testimonial-card .google-logo::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjY4IDguMTgyQzE1LjY4IDcuNjE4IDE1LjYzNiA3LjA5MSAxNS41NDUgNi41ODJIOC4xODJWOS42MzZIMTIuMzI3QzEyLjE0NSAxMC42MTggMTEuNTQ1IDExLjQgMTAuNjM2IDExLjkwOVYxMy44MThIMTMuMjM2QzE0Ljc2NCAxMi40MzYgMTUuNjggMTAuNDgyIDE1LjY4IDguMTgyWiIgZmlsbD0iIzQyODVGNCIvPgo8cGF0aCBkPSJNOC4xODIgMTUuNjM2QzEwLjQgMTUuNjM2IDEyLjI3MyAxNC45MDkgMTMuMjM2IDEzLjgxOEwxMC42MzYgMTEuOTA5QzEwIDEyLjI3MyA5LjE4MiAxMi41NDUgOC4xODIgMTIuNTQ1QzYuMDU1IDEyLjU0NSA0LjI3MyAxMS4xODIgMy42MzYgOS4zNjRIMC45MDlWMTEuMzY0QzEuODczIDEzLjI3MyA0LjgzNiAxNS42MzYgOC4xODIgMTUuNjM2WiIgZmlsbD0iIzM0QTg1MyIvPgo8cGF0aCBkPSJNMy42MzYgOS4zNjRDMy40NTUgOC45MDkgMy4zNjQgOC40MTggMy4zNjQgNy45MDlDMy4zNjQgNy40IDMuNDU1IDYuOTA5IDMuNjM2IDYuNDU1VjQuNDU1SDAuOTA9IiBmaWxsPSIjRkJCQzA0Ii8+CjxwYXRoIGQ9Ik04LjE4MiAzLjI3M0M5LjI3MyAzLjI3MyAxMC4yNzMgMy42MzYgMTEuMDkxIDQuNDE4TDEzLjM2NCAyLjE0NUM0LjU0NSAwLjcyNyA2LjE4MiAwIDguMTgyIDBDNC44MzYgMCAxLjg3MyAyLjM2NCAwLjkwOSA0LjQ1NUwzLjYzNiA2LjQ1NUM4LjI3MyA4LjQ1NSAxMC4yNzMgOC4zNjQgMTIuMzI3IDguMzY0WiIgZmlsbD0iI0ZBNDMzNSIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
}

.testimonial-card .rating-right {
    text-align: right;
    color: #5f6368;
    font-size: 12px;
}

.testimonial-card .review-date {
    font-weight: 500;
    margin-bottom: 2px;
}

.testimonial-card .review-time {
    opacity: 0.8;
}

/* Client Info Section */
.testimonial-card .client-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e8eaed;
}

.testimonial-card .client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .client-details {
    flex: 1;
}

.testimonial-card .client-name {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 2px;
}

.testimonial-card .client-location {
    font-size: 14px;
    color: #5f6368;
}

/* Remove old feature card styling for testimonials */
.testimonial-card .feature-card-icon {
    display: none;
}

.testimonial-card .feature-card-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card .feature-card-content h6 {
    display: none;
}

.testimonial-card .feature-card-content p {
    display: none;
}

.testimonial-card .client-info {
    display: none;
}

/* Navigation Controls */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #5a9a3e 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
    background: linear-gradient(135deg, #5a9a3e 0%, #4d8535 100%);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.2);
}

/* Dots Indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    height: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 171, 69, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot:hover {
    background: rgba(99, 171, 69, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #63AB45;
    transform: scale(1.3);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(99, 171, 69, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive Design for Testimonials */
@media (min-width: 768px) {
    .testimonial-track {
        gap: 40px;
    }
    
    .testimonial-card {
        min-width: calc(48%);
        height: 280px;
    }

   
}

.about-img {
    position: relative;
    display: block;
}

.about-img img {
    max-width: 100%;
    height: auto;
}

.about-img img.vector {
    position: absolute;
    z-index: -1;
}

@media (max-width: 576px) {
    .about-img {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .about-img img:not(.vector) {
        width: 88% !important;
        max-width: 88% !important;
        height: auto !important;
    }
}

@media (min-width: 1200px) {
    .testimonial-card {
        min-width: calc(48%)
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-track {
        gap: 20px;
        padding: 5px;
    }
    
    .testimonial-card {
        min-width: 100%;
        height: 280px;
    }
    
    .testimonial-card .feature-card {
        height: auto;
        min-height: 200px;
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-card .testimonial-avatar {
        min-width: 80px;
        max-width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .testimonial-card .avatar-img {
        width: 60px;
        height: 60px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-nav {
        gap: 15px;
        margin-top: 30px;
    }
}

/* Auto-play indicator */
.testimonial-slider-wrapper.auto-playing .dot.active::after {
    animation: countdown 5s linear infinite;
}

@keyframes countdown {
    0% {
        transform: scale(1);
        opacity: 0.8;
        border-color: #63AB45;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
        border-color: rgba(99, 171, 69, 0.3);
    }
}

/* Hover effects for testimonial cards */
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
}

.testimonial-card:hover .avatar-img {
    border-color: rgba(255, 255, 255, 0.6);
}

.testimonial-card:hover .rating i {
    color: #FFA500;
    transform: scale(1.1);
}

/* Touch/swipe support indicators */
.testimonial-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slider-wrapper:hover::before,
.testimonial-slider-wrapper:hover::after {
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float-btn i {
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover i {
    transform: scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Ripple Effect */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    transform: translate(-50%, -50%) scale(1);
    animation: whatsapp-ripple 2s ease-out infinite;
}

@keyframes whatsapp-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-btn i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float-btn i {
        font-size: 24px;
    }
}
