/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #3D5AFE;
    --secondary-color: #5C6BC0;
    --accent-color: #00E5FF;
    --dark-color: #1E293B;
    --light-color: #FFFFFF;
    --gray-color: #F1F5F9;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Effects */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --mobile-menu-width: 320px;
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #3D5AFE, #00E5FF);
    --top-bar-bg: #EAF6FF;
    --top-bar-text: #1F2937;
    
    /* Spacing */
    --container-padding: 0 20px;
    --nav-height: 80px;
    --top-bar-height: 45px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Top Bar Styles */
.top-bar {
    background: var(--top-bar-bg);
    color: var(--top-bar-text);
    height: var(--top-bar-height);
    font-size: 14px;
    border-bottom: 1px solid rgba(61, 90, 254, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Country Selector */
.country-selector {
    position: relative;
    z-index: 1001;
}

.country-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(61, 90, 254, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    height: 32px;
}

.country-btn:hover,
.country-btn:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 90, 254, 0.1);
}

.country-btn .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.country-btn .country-code {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.country-btn .fa-chevron-down {
    font-size: 12px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.country-btn:hover .fa-chevron-down,
.country-dropdown.active .country-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 280px;
    background: var(--light-color);
    border: 1px solid rgba(61, 90, 254, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.country-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-search {
    padding: 12px;
    border-bottom: 1px solid var(--gray-color);
}

.country-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.country-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 90, 254, 0.1);
    outline: none;
}

.country-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.country-item:hover {
    background: var(--gray-color);
}

.country-item .flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.country-item .country-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.country-item .country-code {
    font-size: 14px;
    color: var(--text-light);
}

/* Top Bar Contact Info */
.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
    height: 32px;
}

.top-bar .contact-link:hover {
    color: var(--primary-color);
}

.top-bar .contact-link i {
    font-size: 12px;
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--light-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(61, 90, 254, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 90, 254, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--light-color);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    height: 32px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Main Navigation */
.main-nav {
    background: var(--light-color);
    height: var(--nav-height);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-lg);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo a {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i:first-child {
    font-size: 16px;
}

.dropdown-icon {
    font-size: 12px;
    transition: var(--transition);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 200;
    border: 1px solid rgba(61, 90, 254, 0.1);
    min-width: 250px;
    padding: 15px 0;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Show dropdown when active class is present */
.dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    position: relative;
}

.dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--gray-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown a:hover::before {
    transform: scaleY(1);
}

.dropdown a i {
    width: 18px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.dropdown a:hover i {
    color: var(--primary-color);
}

/* CTA Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 90, 254, 0.3);
}

.btn-primary {
    background: var(--gradient);
    color: var(--light-color);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 90, 254, 0.4);
}

.btn i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    transform-origin: left center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--mobile-menu-width);
    height: 100%;
    background: var(--light-color);
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-color);
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-list {
    margin-bottom: 30px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-color);
}

.mobile-nav-toggle,
.mobile-nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-toggle:hover,
.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-nav-toggle i:last-child {
    margin-left: auto;
    transition: var(--transition);
}

.mobile-nav-toggle.active i:last-child {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--gray-color);
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-submenu a:hover {
    background: rgba(61, 90, 254, 0.1);
    color: var(--primary-color);
}

.mobile-submenu a i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.mobile-contact {
    margin-bottom: 30px;
}

.mobile-contact-item {
    margin-bottom: 10px;
}

.mobile-contact-item a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-contact-item a:hover {
    color: var(--primary-color);
}

.mobile-contact-item i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-color);
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-color);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

.notification-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Media Queries */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .top-bar {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .dropdown {
        width: 400px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --mobile-menu-width: 280px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .social-links {
        gap: 6px;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.country-btn:focus,
.nav-link:focus,
.btn:focus,
.mobile-nav-toggle:focus,
.mobile-nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .main-nav {
        position: static;
        box-shadow: none;
    }
}


/* Footer Styles */
.footer-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 30px;
    position: relative;
}

/* Footer Main Content Layout */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Column Styling */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.company-desc {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Contact Information */
.footer-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 4px;
}

.contact-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 15px;
    margin-bottom: 25px;
}

.newsletter-form p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    display: flex;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #000000
    font-size: 0.9rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--accent-color);
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 16px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 28px;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 41, 59, 0.9) 0%, rgba(61, 90, 254, 0.85) 100%);
    z-index: -1;
}

/* Decorative Shapes */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: -50px;
    left: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 30%;
    right: 20%;
}

/* Hero Content Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Content Area */
.hero-content {
    color: var(--light-color);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: fit-content;
}

.hero-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Feature List */
.feature-container {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.price-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-suffix {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.cta-button:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Right Form Area */
.hero-form {
    max-width: 450px;
    width: 100%;
    margin-left: auto;
}

.form-card {
    background: var(--light-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.form-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.input-wrapper textarea {
    resize: none;
    min-height: 100px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(61, 90, 254, 0.1);
}

.error-text {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.captcha-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.submit-button i {
    font-size: 0.9rem;
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0 30px 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-badge i {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-contact {
        margin: 0 auto 25px;
    }
    
    .feature-list {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .pricing-badge {
        width: 100%;
        text-align: center;
    }
    
    .price-wrapper {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    form {
        padding: 20px;
    }
    
    .form-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Animation for the hero elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.hero-description,
.hero-contact,
.feature-container,
.hero-actions {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.3s;
}

.hero-contact {
    animation-delay: 0.4s;
}

.feature-container {
    animation-delay: 0.5s;
}

.hero-actions {
    animation-delay: 0.6s;
}
/* About Us Section */
.cs-about {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.cs-about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(61, 90, 254, 0.05), rgba(101, 31, 255, 0.05));
    top: -150px;
    left: -150px;
    z-index: 0;
}

.cs-about::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(61, 90, 254, 0.05), rgba(101, 31, 255, 0.05));
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.cs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

/* Content Side */
.cs-info {
    flex: 1;
    padding-right: 50px;
}

.cs-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #3d5afe;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.cs-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: #3d5afe;
}

.cs-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cs-separator {
    width: 70px;
    height: 4px;
    background: linear-gradient(45deg, #3d5afe, #651fff);
    margin-bottom: 25px;
    border-radius: 2px;
}

.cs-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Stats Section */
.cs-stats {
    display: flex;
    margin-bottom: 35px;
}

.cs-stat-item {
    margin-right: 40px;
    position: relative;
}

.cs-stat-item:last-child {
    margin-right: 0;
}

.cs-stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15px;
    height: 30px;
    width: 1px;
    background-color: #e0e0e0;
}

.cs-stat-item:last-child::after {
    display: none;
}

.cs-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3d5afe;
    margin-bottom: 5px;
}

.cs-stat-label {
    font-size: 14px;
    color: #777;
}

/* Button */
.cs-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #3d5afe, #651fff);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(61, 90, 254, 0.2);
}

.cs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 90, 254, 0.3);
}

/* Image Side */
.cs-visual {
    flex: 1;
    position: relative;
}

.cs-img-box {
    position: relative;
    padding: 20px;
}

.cs-shape {
    position: absolute;
    border-radius: 20px;
}

.cs-shape-1 {
    width: 80%;
    height: 80%;
    background-color: rgba(61, 90, 254, 0.05);
    top: 0;
    left: 0;
    z-index: 1;
}

.cs-shape-2 {
    width: 80%;
    height: 80%;
    border: 2px solid #3d5afe;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.cs-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cs-experience {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: linear-gradient(45deg, #3d5afe, #651fff);
    color: white;
    padding: 15px 25px;
    border-radius: 0 50px 50px 0;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(61, 90, 254, 0.3);
}

.cs-exp-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.cs-exp-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cs-about {
        padding: 80px 0;
    }
    
    .cs-wrapper {
        flex-direction: column;
    }
    
    .cs-info {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .cs-subtitle {
        padding-left: 0;
    }
    
    .cs-subtitle::before {
        display: none;
    }
    
    .cs-separator {
        margin: 0 auto 25px;
    }
    
    .cs-stats {
        justify-content: center;
    }
    
    .cs-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cs-about {
        padding: 60px 0;
    }
    
    .cs-heading {
        font-size: 28px;
    }
    
    .cs-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cs-stat-item {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cs-stat-item::after {
        display: none;
    }
    
    .cs-experience {
        padding: 10px 20px;
    }
    
    .cs-exp-number {
        font-size: 20px;
    }
    
    .cs-exp-text {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .cs-about {
        padding: 50px 0;
    }
    
    .cs-heading {
        font-size: 24px;
    }
    
    .cs-desc {
        font-size: 15px;
    }
    
    .cs-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}



/* Partners Section Styles */
.partners-section {
  padding: 60px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.partners-section .head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.partners-section .head h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.partners-section .head h2 span {
  color: var(--primary-color);
}

.partners-section .head p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners-section .head-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(61, 90, 254, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.03) 0%, transparent 25%);
  pointer-events: none;
}

.partners-showcase {
  position: relative;
  padding: 20px 0;
}

.partners-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
}

.partners-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.partner-item {
  flex: 0 0 auto;
  width: calc(25% - 30px);
  min-width: 200px;
  scroll-snap-align: center;
}

.partner-card {
  background-color: var(--light-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-color);
  overflow: hidden;
  position: relative;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.05), rgba(0, 229, 255, 0.05));
  opacity: 0;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 90, 254, 0.2);
}

.partner-card:hover::before {
  opacity: 1;
}

.card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.partner-card:hover .card-inner {
  transform: scale(1.05);
}

.partner-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Scroll Indicators */
.scroll-indicators {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
  padding: 0 15px;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--primary-color);
  transition: var(--transition);
  pointer-events: auto;
  opacity: 0.8;
}

.scroll-arrow:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: scale(1.1);
  opacity: 1;
}

.scroll-arrow:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(61, 90, 254, 0.3);
}

/* Animation for partners */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.partner-item:nth-child(1) { animation-delay: 0.1s; }
.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.3s; }
.partner-item:nth-child(4) { animation-delay: 0.4s; }
.partner-item:nth-child(5) { animation-delay: 0.5s; }
.partner-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Styles */
@media (max-width: 992px) {
  .partner-item {
    width: calc(33.33% - 30px);
  }
  
  .partners-section .head h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 50px 0;
  }
  
  .partner-item {
    width: calc(50% - 30px);
  }
  
  .partners-section .head h2 {
    font-size: 28px;
  }
  
  .partners-section .head p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 40px 0;
  }
  
  .partner-item {
    width: calc(100% - 30px);
    min-width: 180px;
  }
  
  .partners-section .head h2 {
    font-size: 24px;
  }
  
  .partner-card {
    height: 100px;
  }
  
  .scroll-arrow {
    width: 36px;
    height: 36px;
  }
}


/* Company Introduction Section Styles */
.company-intro {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
}

.company-intro::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(61, 90, 254, 0.05), rgba(0, 229, 255, 0.05));
    z-index: 0;
}

.company-intro::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(61, 90, 254, 0.05));
    z-index: 0;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Column Styles */
.intro-content {
    max-width: 550px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(61, 90, 254, 0.1), rgba(0, 229, 255, 0.1));
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
}

.section-badge span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.intro-heading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

.intro-description {
    margin-bottom: 30px;
}

.intro-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Company Stats */
.company-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -15px;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gray-color), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Button */
.intro-cta {
    margin-top: 10px;
}

.discover-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discover-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.discover-button:hover {
    color: var(--light-color);
}

.discover-button:hover::before {
    width: 100%;
}

.discover-button i {
    transition: transform 0.3s ease;
}

.discover-button:hover i {
    transform: translateX(5px);
}

/* Image Column Styles */
.intro-visual {
    position: relative;
}

.image-container {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
}

.image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: var(--gradient);
    border-radius: 20px;
    z-index: 0;
}

.image-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.image-frame:hover .intro-image {
    transform: scale(1.05);
}

.experience-badge {
    display: none;
}

.badge-content {
    display: none;
}

.years {
    display: none;
}

.label {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .intro-heading {
        font-size: 34px;
    }
    
    .company-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .company-intro {
        padding: 80px 0;
    }
    
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-content {
        max-width: 100%;
    }
    
    .intro-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .image-container {
        padding-right: 20px;
    }
    
    .experience-badge {
        bottom: -20px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .company-intro {
        padding: 60px 0;
    }
    
    .intro-heading {
        font-size: 30px;
    }
    
    .company-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .company-intro {
        padding: 50px 0;
    }
    
    .intro-heading {
        font-size: 26px;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .years {
        font-size: 24px;
    }
    
    .label {
        font-size: 10px;
    }
}


/* Clean Services Section Styles */
.service-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

/* Section Header */
.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(61, 90, 254, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Service Item */
.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(61, 90, 254, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-item:hover .service-icon i {
    color: #fff;
}

/* Service Details */
.service-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: var(--primary-color);
}

.service-info {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-link span {
    margin-right: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* View All Button */
.section-action {
    text-align: center;
}

.view-all {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-all:hover {
    background-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .service-grid {
        gap: 20px;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-name {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 60px 0;
    }
    
    .section-intro {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .view-all {
        padding: 10px 25px;
        font-size: 15px;
    }
}








/* Services Section */
#services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Column Styles */
.col-md-12, .col-md-4, .col-sm-6, .col-xs-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Section Header */
.head {
    text-align: center;
    margin-bottom: 40px;
}

.head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.head h2 span {
    color: #3d5afe;
}

.head p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Flip Card */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid #ddd;
}

.flip-card-front {
    background-color: #fff;
}

.flip-card-front img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.flip-card-front .des {
    background-color: #3d5afe;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    background-color: #fff;
    color: #333;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .flip-card {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .flip-card {
        height: 250px;
    }
    
    .head h2 {
        font-size: 30px;
    }
    
    .flip-card-front .des {
        font-size: 16px;
        padding: 8px;
    }
    
    .flip-card-back p {
        font-size: 13px;
    }
}

/* AOS Animation Styles */
.aos-init {
    opacity: 0;
    transition: opacity 0.3s;
}

.aos-animate {
    opacity: 1;
}



/* Banner Logo Section */
#banner-logo {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

#banner-logo .head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

#banner-logo .head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

#banner-logo .head h2 span {
    color: var(--primary-color);
}

#banner-logo .head p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.head-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.techno-slider {
    padding: 20px 0;
    position: relative;
}

.tech-icon {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Owl Carousel Styles */
.owl-carousel {
    position: relative;
}

.owl-stage-outer {
    overflow: hidden;
    position: relative;
}

.owl-item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.owl-nav button.owl-prev {
    left: -20px;
}

.owl-nav button.owl-next {
    right: -20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #banner-logo .head h2 {
        font-size: 2rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon i {
        font-size: 2rem;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    #banner-logo {
        padding: 40px 0;
    }
    
    #banner-logo .head h2 {
        font-size: 1.5rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 1.5rem;
    }
    
    .tech-name {
        font-size: 0.8rem;
    }
}

/* Tech Icon Colors */
.tech-icon.html i { color: #E44D26; }
.tech-icon.css i { color: #264DE4; }
.tech-icon.js i { color: #F7DF1E; }
.tech-icon.react i { color: #61DAFB; }
.tech-icon.angular i { color: #DD0031; }
.tech-icon.vue i { color: #41B883; }
.tech-icon.node i { color: #339933; }
.tech-icon.php i { color: #777BB4; }
.tech-icon.laravel i { color: #FF2D20; }
.tech-icon.wordpress i { color: #21759B; }
.tech-icon.python i { color: #3776AB; }
.tech-icon.java i { color: #007396; }
.tech-icon.android i { color: #3DDC84; }
.tech-icon.apple i { color: #000000; }
.tech-icon.aws i { color: #FF9900; }
.tech-icon.docker i { color: #2496ED; }
.tech-icon.git i { color: #F05032; }
.tech-icon.database i { color: #336791; }

/* Tech Icon Hover Effects */
.tech-icon:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.tech-icon:hover .icon-wrapper {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Why Choose Us Section */
.is-features {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

/* Container */
.is-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.is-header {
    text-align: center;
    margin-bottom: 60px;
}

.is-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #3d5afe;
    margin-bottom: 15px;
    position: relative;
    padding: 5px 15px;
    background-color: rgba(61, 90, 254, 0.1);
    border-radius: 20px;
}

.is-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.is-separator {
    width: 70px;
    height: 4px;
    background: linear-gradient(45deg, #3d5afe, #651fff);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.is-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Card */
.is-card {
    position: relative;
    transition: all 0.3s ease;
}

.is-card-inner {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.is-card:hover .is-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(61, 90, 254, 0.15);
}

/* Icon Styling */
.is-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.is-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(61, 90, 254, 0.1), rgba(101, 31, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.is-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(61, 90, 254, 0.3);
    animation: spin 20s linear infinite;
}

.is-card:hover .is-icon {
    background: linear-gradient(45deg, #3d5afe, #651fff);
    transform: scale(1.1);
}

.is-icon i {
    font-size: 28px;
    color: #3d5afe;
    transition: all 0.3s ease;
}

.is-card:hover .is-icon i {
    color: #fff;
}

/* Card Content */
.is-content {
    flex: 1;
}

.is-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.is-card:hover .is-card-title {
    color: #3d5afe;
}

.is-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.is-card-text strong {
    color: #333;
    font-weight: 600;
}

/* Hover Effect */
.is-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #3d5afe, #651fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.is-card:hover .is-hover-effect {
    transform: scaleX(1);
}

/* Background Shapes */
.is-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(61, 90, 254, 0.05), rgba(101, 31, 255, 0.05));
    z-index: 1;
}

.is-shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.is-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

/* Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .is-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .is-features {
        padding: 70px 0;
    }
    
    .is-header {
        margin-bottom: 40px;
    }
    
    .is-title {
        font-size: 28px;
    }
    
    .is-description {
        font-size: 16px;
    }
    
    .is-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .is-card-inner {
        padding: 25px;
    }
    
    .is-icon {
        width: 60px;
        height: 60px;
    }
    
    .is-icon i {
        font-size: 24px;
    }
    
    .is-card-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .is-features {
        padding: 50px 0;
    }
    
    .is-title {
        font-size: 24px;
    }
    
    .is-description {
        font-size: 15px;
    }
    
    .is-card-inner {
        padding: 20px;
    }
    
       .is-icon {
        width: 50px;
        height: 50px;
    }
    
    .is-icon i {
        font-size: 20px;
    }
    
    .is-card-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .is-card-text {
        font-size: 14px;
    }
}

/* Card Staggered Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover States */
.is-card:nth-child(1) .is-icon { background: linear-gradient(45deg, rgba(61, 90, 254, 0.1), rgba(101, 31, 255, 0.1)); }
.is-card:nth-child(2) .is-icon { background: linear-gradient(45deg, rgba(255, 87, 34, 0.1), rgba(255, 193, 7, 0.1)); }
.is-card:nth-child(3) .is-icon { background: linear-gradient(45deg, rgba(0, 150, 136, 0.1), rgba(76, 175, 80, 0.1)); }
.is-card:nth-child(4) .is-icon { background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1)); }
.is-card:nth-child(5) .is-icon { background: linear-gradient(45deg, rgba(3, 169, 244, 0.1), rgba(0, 188, 212, 0.1)); }
.is-card:nth-child(6) .is-icon { background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1)); }
.is-card:nth-child(7) .is-icon { background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1)); }
.is-card:nth-child(8) .is-icon { background: linear-gradient(45deg, rgba(156, 39, 176, 0.1), rgba(103, 58, 183, 0.1)); }
.is-card:nth-child(9) .is-icon { background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(3, 169, 244, 0.1)); }

.is-card:nth-child(1):hover .is-icon { background: linear-gradient(45deg, #3d5afe, #651fff); }
.is-card:nth-child(2):hover .is-icon { background: linear-gradient(45deg, #ff5722, #ffc107); }
.is-card:nth-child(3):hover .is-icon { background: linear-gradient(45deg, #009688, #4caf50); }
.is-card:nth-child(4):hover .is-icon { background: linear-gradient(45deg, #e91e63, #9c27b0); }
.is-card:nth-child(5):hover .is-icon { background: linear-gradient(45deg, #03a9f4, #00bcd4); }
.is-card:nth-child(6):hover .is-icon { background: linear-gradient(45deg, #ffc107, #ff9800); }
.is-card:nth-child(7):hover .is-icon { background: linear-gradient(45deg, #4caf50, #8bc34a); }
.is-card:nth-child(8):hover .is-icon { background: linear-gradient(45deg, #9c27b0, #673ab7); }
.is-card:nth-child(9):hover .is-icon { background: linear-gradient(45deg, #2196f3, #03a9f4); }

.is-card:nth-child(1) .is-hover-effect { background: linear-gradient(45deg, #3d5afe, #651fff); }
.is-card:nth-child(2) .is-hover-effect { background: linear-gradient(45deg, #ff5722, #ffc107); }
.is-card:nth-child(3) .is-hover-effect { background: linear-gradient(45deg, #009688, #4caf50); }
.is-card:nth-child(4) .is-hover-effect { background: linear-gradient(45deg, #e91e63, #9c27b0); }
.is-card:nth-child(5) .is-hover-effect { background: linear-gradient(45deg, #03a9f4, #00bcd4); }
.is-card:nth-child(6) .is-hover-effect { background: linear-gradient(45deg, #ffc107, #ff9800); }
.is-card:nth-child(7) .is-hover-effect { background: linear-gradient(45deg, #4caf50, #8bc34a); }
.is-card:nth-child(8) .is-hover-effect { background: linear-gradient(45deg, #9c27b0, #673ab7); }
.is-card:nth-child(9) .is-hover-effect { background: linear-gradient(45deg, #2196f3, #03a9f4); }

.is-card:nth-child(1):hover .is-card-title { color: #3d5afe; }
.is-card:nth-child(2):hover .is-card-title { color: #ff5722; }
.is-card:nth-child(3):hover .is-card-title { color: #009688; }
.is-card:nth-child(4):hover .is-card-title { color: #e91e63; }
.is-card:nth-child(5):hover .is-card-title { color: #03a9f4; }
.is-card:nth-child(6):hover .is-card-title { color: #ffc107; }
.is-card:nth-child(7):hover .is-card-title { color: #4caf50; }
.is-card:nth-child(8):hover .is-card-title { color: #9c27b0; }
.is-card:nth-child(9):hover .is-card-title { color: #2196f3; }

/* Icon Colors */
.is-card:nth-child(1) .is-icon i { color: #3d5afe; }
.is-card:nth-child(2) .is-icon i { color: #ff5722; }
.is-card:nth-child(3) .is-icon i { color: #009688; }
.is-card:nth-child(4) .is-icon i { color: #e91e63; }
.is-card:nth-child(5) .is-icon i { color: #03a9f4; }
.is-card:nth-child(6) .is-icon i { color: #ffc107; }
.is-card:nth-child(7) .is-icon i { color: #4caf50; }
.is-card:nth-child(8) .is-icon i { color: #9c27b0; }
.is-card:nth-child(9) .is-icon i { color: #2196f3; }

/* Card Hover Animation */
.is-card-inner {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.is-card:hover .is-card-inner {
    transform: translateY(-10px);
}

/* Card Border Radius Animation */
.is-card-inner {
    border-radius: 15px;
    transition: border-radius 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.is-card:hover .is-card-inner {
    border-radius: 20px 20px 15px 15px;
}

/* Floating Animation for Cards */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.is-card:nth-child(3n+1) {
    animation: float 4s ease-in-out infinite;
}

.is-card:nth-child(3n+2) {
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.is-card:nth-child(3n) {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 90, 254, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(61, 90, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 90, 254, 0);
    }
}

.is-card:hover .is-icon {
    animation: pulse 2s infinite;
}

/* Custom Animation for Specific Cards */
.is-card:nth-child(1):hover .is-icon { animation: pulse 2s infinite; animation-delay: 0s; }
.is-card:nth-child(2):hover .is-icon { animation: pulse 2s infinite; animation-delay: 0.2s; }
.is-card:nth-child(3):hover .is-icon { animation: pulse 2s infinite; animation-delay: 0.4s; }
.is-card:nth-child(4):hover .is-icon { animation: pulse 2s infinite; animation-delay: 0.6s; }
.is-card:nth-child(5):hover .is-icon { animation: pulse 2s infinite; animation-delay: 0.8s; }
.is-card:nth-child(6):hover .is-icon { animation: pulse 2s infinite; animation-delay: 1.0s; }
.is-card:nth-child(7):hover .is-icon { animation: pulse 2s infinite; animation-delay: 1.2s; }
.is-card:nth-child(8):hover .is-icon { animation: pulse 2s infinite; animation-delay: 1.4s; }
.is-card:nth-child(9):hover .is-icon { animation: pulse 2s infinite; animation-delay: 1.6s; }

/* Print Styles */
@media print {
    .is-features {
        padding: 20px 0;
        background-color: #fff !important;
    }
    
    .is-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .is-card-inner {
        box-shadow: none !important;
        border: 1px solid #eee;
    }
    
    .is-icon::after,
    .is-shape,
    .is-hover-effect {
        display: none !important;
    }
}



/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  opacity: 0.05;
}

.testimonials:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  opacity: 0.05;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonials__heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials__heading:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

/* Card Header */
.testimonial-card__header {
  display: flex;
  align-items: center;
  padding: 25px 30px 15px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__client {
  flex-grow: 1;
}

.testimonial-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.testimonial-card__rating {
  position: absolute;
  top: 25px;
  right: 30px;
  display: flex;
}

.star {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-left: 2px;
}

.star.half {
  position: relative;
  overflow: hidden;
  width: 0.6em;
}

/* Card Body */
.testimonial-card__body {
  padding: 25px 30px;
  flex-grow: 1;
  position: relative;
}

.testimonial-card__body:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: #f1f5f9;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Card Footer */
.testimonial-card__footer {
  padding: 15px 30px 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  font-size: 0.85rem;
  color: #64748b;
}

.testimonial-card__date {
  display: flex;
  align-items: center;
}

.testimonial-card__date:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm-1-6.5h2v-5h-2v5zm0-7h2v-2h-2v2z'/%3E%3C/svg%3E");
  background-size: contain;
  margin-right: 5px;
}

.testimonial-card__project {
  display: flex;
  align-items: center;
}

.testimonial-card__project:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7v-7zm4-3h2v10h-2V7zm4 6h2v4h-2v-4z'/%3E%3C/svg%3E");
  background-size: contain;
  margin-right: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials__heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .testimonial-card__header {
    padding: 20px 20px 10px;
  }
  
  .testimonial-card__body {
    padding: 20px;
  }
  
  .testimonial-card__footer {
    padding: 10px 20px 20px;
    flex-direction: column;
    gap: 5px;
  }
  
  .testimonial-card__avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-card__rating {
    position: static;
    margin-top: 10px;
  }
}


/* Creative FAQ Section with Standard Colors */
.faq-showcase {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Column: FAQ Content */
.faq-showcase__questions {
  flex: 1;
  min-width: 500px;
}

.faq-showcase__header {
  margin-bottom: 40px;
}

.faq-showcase__title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.faq-showcase__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.faq-showcase__underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #4a90e2;
  border-radius: 2px;
}

.faq-showcase__subtitle {
  font-size: 1.1rem;
  color: #666666;
  margin: 0;
}

/* Tabs Navigation */
.faq-tabs__nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.faq-tabs__button {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #666666;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tabs__button:hover {
  background-color: #f5f5f5;
  color: #333333;
}

.faq-tabs__button--active {
  background-color: #4a90e2;
  color: white;
}

.faq-tabs__icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-tabs__label {
  font-size: 0.95rem;
}

/* Tab Content */
.faq-tabs__panel {
  display: none;
}

.faq-tabs__panel--active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion__item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-accordion__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-accordion__header:hover {
  background-color: #f9f9f9;
}

.faq-accordion__header[aria-expanded="true"] {
  background-color: #f5f9ff;
  border-bottom: 1px solid #e5e5e5;
}

.faq-accordion__question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  flex: 1;
  padding-right: 20px;
}

.faq-accordion__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-accordion__header[aria-expanded="true"] .faq-accordion__toggle {
  background-color: #4a90e2;
}

.faq-accordion__toggle-icon {
  position: relative;
  width: 12px;
  height: 2px;
  background-color: #666666;
  transition: all 0.3s ease;
}

.faq-accordion__toggle-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #666666;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.faq-accordion__header[aria-expanded="true"] .faq-accordion__toggle-icon,
.faq-accordion__header[aria-expanded="true"] .faq-accordion__toggle-icon::after {
  background-color: #ffffff;
}

.faq-accordion__header[aria-expanded="true"] .faq-accordion__toggle-icon::after {
  transform: rotate(0);
}

.faq-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion__header[aria-expanded="true"] + .faq-accordion__body {
  max-height: 1000px;
}

.faq-accordion__content {
  padding: 20px;
  color: #666666;
  line-height: 1.6;
}

.faq-accordion__content p {
  margin: 0;
}

/* Right Column: Visual Element */
.faq-showcase__visual {
  flex: 1;
  min-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-showcase__card {
  background-color: #f5f9ff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.faq-showcase__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.faq-showcase__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: white;
}

.faq-showcase__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.faq-showcase__card-text {
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-showcase__card-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-showcase__card-button:hover {
  background-color: #3a80d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.faq-showcase__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.faq-showcase__dots {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.8;
}

.faq-showcase__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.faq-showcase__circle--1 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
  background-color: #4a90e2;
}

.faq-showcase__circle--2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -75px;
  background-color: #333333;
}

.faq-showcase__lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
                    linear-gradient(-45deg, #e0e0e0 25%, transparent 25%);
  background-size: 10px 10px;
  opacity: 0.5;
}

.faq-showcase__testimonial {
  position: relative;
  z-index: 2;
}

.faq-showcase__testimonial-content {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.faq-showcase__quote-icon {
  position: absolute;
  top: -20px;
  left: 30px;
  color: #4a90e2;
  opacity: 0.2;
  transform: scale(1.5);
}

.faq-showcase__testimonial-text {
  color: #666666;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-showcase__testimonial-author {
  display: flex;
  align-items: center;
}

.faq-showcase__testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.faq-showcase__testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-showcase__testimonial-info {
  display: flex;
  flex-direction: column;
}

.faq-showcase__testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 4px 0;
}

.faq-showcase__testimonial-role {
  font-size: 0.9rem;
  color: #999999;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .faq-showcase__container {
    flex-direction: column;
  }
  
  .faq-showcase__questions,
  .faq-showcase__visual {
    min-width: 100%;
  }
  
  .faq-showcase__visual {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .faq-showcase {
    padding: 60px 0;
  }
  
  .faq-showcase__title {
    font-size: 2rem;
  }
  
  .faq-tabs__nav {
    overflow-x: auto;
    padding-bottom: 15px;
  }
  
  .faq-tabs__button {
    padding: 8px 12px;
    white-space: nowrap;
  }
  
  .faq-accordion__question {
    font-size: 1rem;
  }
  
  .faq-showcase__card {
    padding: 20px;
  }
  
  .faq-showcase__card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .faq-showcase {
    padding: 40px 0;
  }
  
  .faq-showcase__title {
    font-size: 1.8rem;
  }
  
  .faq-showcase__subtitle {
    font-size: 1rem;
  }
  
  .faq-accordion__header {
    padding: 15px;
  }
  
  .faq-accordion__content {
    padding: 15px;
  }
  
  .faq-showcase__card-icon {
    width: 40px;
    height: 40px;
  }
  
  .faq-showcase__testimonial-content {
    padding: 20px;
  }
}




/* Floating Call Request Button and Slide-in Form Styles */

/* Container */
.call-request-container {
  position: fixed;
  z-index: 1000;
}

/* Floating Button */
.call-request-button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% - 60px));
  display: flex;
  align-items: center;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 16px 20px;
  cursor: pointer;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1001;
}

.call-request-button:hover {
  transform: translateY(-50%) translateX(calc(100% - 200px));
  background-color: #3a80d2;
}

.call-request-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.call-request-button__text {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Slide-in Form */
.call-request-form {
  position: fixed;
  top: 0;
  right: -400px; /* Start off-screen */
  width: 380px;
  height: 100%;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  overflow-y: auto;
}

.call-request-form.active {
  right: 0;
}

.call-request-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #4a90e2;
  color: white;
}

.call-request-form__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.call-request-form__close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.call-request-form__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.call-request-form__body {
  padding: 20px;
}

.call-request-form__description {
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333333;
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
  outline: none;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit-button {
  width: 100%;
  padding: 14px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-submit-button:hover {
  background-color: #3a80d2;
  transform: translateY(-2px);
}

/* Overlay */
.call-request-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.call-request-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 576px) {
  .call-request-button {
    transform: translateY(-50%) translateX(calc(100% - 50px));
    padding: 12px 16px;
  }
  
  .call-request-button:hover {
    transform: translateY(-50%) translateX(calc(100% - 180px));
  }
  
  .call-request-form {
    width: 100%;
    right: -100%;
  }
  
  .call-request-form.active {
    right: 0;
  }
}
