/* Vertex Services - Custom Styles */

:root {
    /* Primary Colors - Based on Logo */
    --primary: #00D4FF;
    --primary-dark: #00A8CC;
    --secondary: #4A90E2;
    
    /* Dark Colors - Professional Hierarchy */
    --dark-navy: #1A2B5F;
    --dark-teal: #0F2027;
    --medium-dark: #2C3E7D;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    
    /* Text Colors */
    --text-dark: #1A1A2E;
    --text-navy: #2C3E7D;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    
    /* Border & Shadow */
    --border-light: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    overflow-y: visible;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    overflow-y: visible;
    padding-top: 90px;
}

/* ==================== Header Styles ==================== */
.header {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10001;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10002;
}

.logo-header {
    display: flex;
    align-items: center;
}

.logo-header img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-header img:hover {
    transform: scale(1.05);
}

/* Main Menu */
.main-menu {
    display: block;
}

.menu-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-item .item-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s ease;
    position: relative;
}

.menu-item .item-link span {
    position: relative;
}

.menu-item.current-menu-item .item-link,
.menu-item .item-link:hover {
    color: var(--primary);
}

.menu-item.current-menu-item .item-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    z-index: 1;
}

/* Dropdown Menu */
.menu-item-has-children > .item-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    color: #2C3E7D;
    transition: color 0.3s ease;
}

.menu-item-has-children.current-menu-item > .item-link::after {
    color: var(--primary) !important;
}

.menu-item-has-children:hover > .item-link::after {
    color: var(--primary);
}

.sub-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    position: fixed;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999;
    border: 1px solid var(--border-light);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu-item {
    padding: 0;
}

.sub-menu-item .item-link-2 {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sub-menu-item .item-link-2:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 30px;
}

/* Active Submenu Item */
.sub-menu-item.active-submenu-item .item-link-2 {
    background-color: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.sub-menu-item.active-submenu-item .item-link-2:hover {
    background-color: rgba(0, 212, 255, 0.15);
    padding-left: 30px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-btn .tf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nav-btn .tf-btn:hover {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.nav-btn .tf-btn i {
    font-size: 14px;
}

/* Burger Menu */
.nav-megamenu {
    display: none;
}

.megamenu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-button {
    display: none;
}

/* ==================== Main Content Area ==================== */
.container {
    position: relative;
    z-index: 1;
}

.page-header {
    padding: 60px 0 30px;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.page-content {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.page-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 16px;
}

/* ==================== Footer Styles ==================== */
.footer {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    /* padding-top: 80px; */
    margin-top: 80px;
}

.footer-inner {
    position: relative;
    z-index: 2;
}

.mask {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.mask-1 {
    top: -200px;
    left: -200px;
}

.mask-2 {
    bottom: -200px;
    right: -200px;
}

.footer-top {
    margin-bottom: 60px;
    overflow: hidden;
}

.tf-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    animation: marquee 30s linear infinite;
}

.initial-child-container {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.big-text {
    font-size: 80px;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--primary);
    -webkit-text-fill-color: transparent;
    background: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle .left {
    flex: 1;
    max-width: 500px;
}

.form-newsletter .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-newsletter .desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sib-form {
    margin-bottom: 20px;
}

.sib-container {
    display: flex;
    gap: 15px;
}

.sib-input {
    flex: 1;
}

.sib-input .form__entry {
    position: relative;
}

.sib-input input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--bg-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.sib-input input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.sib-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sib-input .icon-email {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.sib-form-block__button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.sib-form-block__button:hover {
    background: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sib-form-block__button i {
    font-size: 14px;
}

.footer-middle .text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-middle .text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.footer-content {
    flex: 0 0 auto;
}

.footer-col-block .title-mobile {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-item-footer {
    margin-bottom: 12px;
}

.support-item-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.support-item-footer a:hover {
    color: var(--primary);
}

.locations-contact {
    flex: 0 0 auto;
}

.locations-footer,
.contact-footer {
    margin-bottom: 30px;
}

.locations-footer .title,
.contact-footer .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.locations-footer .address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.contact-footer h6 a,
.contact-footer h4 a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer h6 a {
    font-size: 16px;
    font-weight: 500;
}

.contact-footer h4 a {
    font-size: 24px;
    font-weight: 600;
}

.contact-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 30px 0;
    position: relative;
}

.footer-bottom .line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-go-top {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.footer-go-top:hover {
    transform: translateX(-50%) translateY(-5px);
}

.footer-go-top i {
    color: var(--bg-white);
    font-size: 20px;
}

.list-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.list-bottom span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.list-bottom span a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.list-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.list-bottom ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.list-bottom ul li a:hover {
    color: var(--primary);
}

/* ==================== Utility Classes ==================== */
.flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.position-relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.fw-4 { font-weight: 400; }
.fw-5 { font-weight: 500; }
.fw-6 { font-weight: 600; }
.fw-7 { font-weight: 700; }
.fs-32 { font-size: 32px; }
.lh-30 { line-height: 1.8; }
.lh-45 { line-height: 1.5; }
.mb-0 { margin-bottom: 0; }
.mb-23 { margin-bottom: 23px; }
.mb-30 { margin-bottom: 30px; }
.rg-15 { gap: 15px; }
.g-30 { gap: 30px; }
.flex-grow-1 { flex-grow: 1; }

/* ==================== Responsive ==================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-close-btn {
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--primary);
}

.mobile-close-btn i {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s ease;
}

.mobile-close-btn:hover i {
    color: white;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link i:first-child {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
}

.mobile-menu-link span {
    flex: 1;
}

.submenu-arrow {
    color: var(--text-gray);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-menu-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Active Mobile Menu Item */
.mobile-menu-item.active-mobile-item .mobile-menu-link {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

.mobile-menu-item.active-mobile-item .mobile-menu-link i:first-child {
    color: var(--primary);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.mobile-menu-item.open .mobile-submenu {
    border-top: 1px solid var(--border-light);
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 15px 25px 15px 60px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: var(--primary);
    padding-left: 65px;
}

/* Active Mobile Submenu Item */
.mobile-submenu li.active-mobile-submenu-item a {
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.mobile-submenu li.active-mobile-submenu-item a:hover {
    background: rgba(0, 212, 255, 0.2);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.mobile-cta-btn i {
    font-size: 14px;
}

/* Desktop CTA - hide on mobile */
.desktop-cta {
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .d-xl-none {
        display: block !important;
    }
    
    .main-menu {
        display: none;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        padding: 15px 30px;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .footer-middle {
        flex-direction: column;
    }
    
    .big-text {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }
    
    body {
        padding-top: 75px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .tf-container {
        padding: 0 20px;
    }
    
    .big-text {
        font-size: 40px;
    }
    
    .form-newsletter .title {
        font-size: 24px;
    }
    
    .list-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Message Panels */
.sib-form-message-panel {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

#error-message {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

#success-message {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.sib-form-message-panel__text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bg-white);
}

.sib-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.input--hidden {
    display: none;
}

.tf-collapse-content {
    display: block;
}

.sib-hide-loader-icon {
    display: none;
}


/* ==================== Hero Section ==================== */
.hero-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Decorative circles */
.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: -100px;
    left: -100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    bottom: -50px;
    left: 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #FFD700;
    font-size: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-title .highlight {
    color: var(--primary) !important;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-features .feature-item:hover {
    transform: translateY(-3px);
}

.hero-features .feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.hero-features .feature-icon i {
    color: var(--primary);
    font-size: 20px;
    transition: color 0.3s ease;
}

.hero-features .feature-item:hover .feature-icon i {
    color: white;
}

.hero-features .feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* Hero CTA */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}

.hero-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 500px;
}

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.hero-main-image img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    filter: brightness(1.2);
}

/* Stats Cards */
.stats-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.stats-card.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
    z-index: 11;
}

.stats-card.card-2 {
    bottom: 80px;
    right: 0;
    animation-delay: 1.5s;
    z-index: 11;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 22px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

/* Stats Bar */
.stats-bar {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-main-image {
        width: 350px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 20px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 350px;
    }

    .hero-main-image {
        width: 280px;
        height: 200px;
        padding: 20px;
    }

    .stats-card {
        padding: 15px 20px;
    }

    .stats-card.card-1 {
        top: 20px;
        left: -10px;
    }

    .stats-card.card-2 {
        bottom: 40px;
        right: -10px;
    }
}


/* ==================== Core Services Section ==================== */
.core-services-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.services-title .highlight {
    color: var(--primary);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Slider */
.services-slider {
    position: relative;
    padding: 0 60px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:hover i {
    color: white;
}

.slider-nav i {
    font-size: 18px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: none;
}

.service-card.active {
    display: block;
}

/* Card Number */
.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 1;
}

.service-card.featured .card-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

/* Featured Card */
.service-card.featured {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(44, 62, 125, 0.3);
}

.service-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card.featured .card-icon i {
    color: white;
}

.service-card.featured .card-title {
    color: white;
}

.service-card.featured .card-description {
    color: rgba(255, 255, 255, 0.85);
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    transform: rotate(5deg) scale(1.1);
}

.service-card:hover .card-icon i {
    color: white;
}

.card-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

/* Card Content */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Card Features List */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.service-card.featured .card-features li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-card.featured .card-features li i {
    color: var(--primary);
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
}

.card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

.service-card.featured .card-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card.featured .card-link:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--text-gray);
    transform: scale(1.2);
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .core-services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-slider {
        padding: 0 50px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav i {
        font-size: 14px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 28px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}


/* ==================== Why Choose Us Section ==================== */
.choose-us-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 100px 0px 30px 0px;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.choose-us-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.choose-us-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

.choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.choose-us-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.choose-us-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.choose-us-title .highlight {
    color: var(--primary);
}

.choose-us-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.65) 0%, rgba(32, 58, 67, 0.65) 50%, rgba(44, 83, 100, 0.65) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(74, 144, 226, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.75) 0%, rgba(32, 58, 67, 0.75) 50%, rgba(44, 83, 100, 0.75) 100%);
}

/* Feature Icon */
.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.choose-us-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.choose-us-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.choose-us-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.choose-us-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .choose-us-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .choose-us-section {
        padding: 60px 0;
    }

    .choose-us-container {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .choose-us-title {
        font-size: 2rem;
    }

    .choose-us-subtitle {
        font-size: 1rem;
    }

    .feature-box {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 28px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .choose-us-cta {
        padding: 40px 20px;
    }

    .choose-us-cta h3 {
        font-size: 1.5rem;
    }

    .choose-us-cta p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== Working Process Section ==================== */
.working-process-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 20px;
}

.process-title .highlight {
    color: var(--primary);
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Horizontal Timeline */
.horizontal-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

/* Timeline Step */
.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Timeline Icon */
.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--text-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-step:hover .timeline-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.timeline-icon i {
    font-size: 32px;
    color: var(--text-navy);
    transition: color 0.4s ease;
}

.timeline-step:hover .timeline-icon i {
    color: white;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--text-navy);
    z-index: 1;
}

.timeline-step:last-child .timeline-line {
    display: none;
}

/* Timeline Content */
.timeline-content {
    text-align: center;
    max-width: 180px;
}

.timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-navy);
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .horizontal-timeline {
        flex-wrap: wrap;
        gap: 60px 40px;
    }

    .timeline-step {
        flex: 0 0 calc(33.333% - 27px);
    }

    .timeline-step:nth-child(3n) .timeline-line {
        display: none;
    }

    .timeline-step:nth-child(6) .timeline-line {
        display: none;
    }

    .timeline-line {
        width: calc(100% + 40px);
    }
}

@media (max-width: 768px) {
    .working-process-section {
        padding: 60px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-title {
        font-size: 2rem;
    }

    .horizontal-timeline {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .timeline-step {
        flex: 1;
        width: 100%;
        margin-bottom: 0;
    }

    /* Reset tablet rules for mobile */
    .timeline-step:nth-child(3n) .timeline-line {
        display: block;
    }

    .timeline-line {
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 80px;
    }

    /* Only hide the last step's line */
    .timeline-step:last-child .timeline-line {
        display: none;
    }

    .timeline-icon {
        width: 70px;
        height: 70px;
    }

    .timeline-icon i {
        font-size: 28px;
    }

    .timeline-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .timeline-title {
        font-size: 1rem;
    }
}


/* ==================== New Footer Styles ==================== */

/* Footer Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.newsletter-form {
    flex: 0 0 500px;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-form .form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    z-index: 2;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px 16px 50px;
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.subscribe-btn {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Footer Main Section */
.footer-main {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.contact-list li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--primary);
}

/* Google Rating */
.google-rating {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
}

.google-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 10px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-navy);
}

.stars i {
    color: #FFD700;
    font-size: 14px;
}

/* Social Links */
.social-links {
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.social-links > span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.social-icon i {
    color: white;
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Location & Hours */
.location-info,
.hours-info {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.location-info i,
.hours-info i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.location-info p,
.hours-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.hours-time {
    color: white !important;
    font-weight: 600;
    margin-top: 5px !important;
}

/* Footer Bottom */
.footer-bottom {
    background: white;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-column {
        grid-column: 1 / -1;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .newsletter-form {
        flex: 1;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }

    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .contact-card h4 {
        font-size: 1.2rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .social-icons {
        justify-content: center;
    }
}


/* ==================== Contact Page Styles ==================== */

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(74, 144, 226, 0.08) 100%);
    pointer-events: none;
}

.left-circle {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
}

.right-circle {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    max-width: 100%;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Captcha */
.captcha-group {
    margin-bottom: 30px;
}

.captcha-wrapper {
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.captcha-image {
    position: relative;
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F2 100%);
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.captcha-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-navy);
    letter-spacing: 3px;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: var(--primary);
}

.captcha-refresh {
    background: var(--primary);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: var(--secondary);
    transform: rotate(180deg);
}

.captcha-refresh i {
    color: white;
    font-size: 14px;
}

.captcha-wrapper input {
    flex: 1;
}

/* Submit Button */
.form-submit {
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.submit-btn i {
    font-size: 16px;
}

/* Contact Information Card */
.contact-info-card {
    /* background: linear-gradient(135deg, var(--text-navy) 0%, var(--medium-dark) 100%); */
    background: linear-gradient(135deg, rgb(15, 32, 39) 0%, rgb(32, 58, 67) 50%, rgb(44, 83, 100) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(44, 62, 125, 0.3);
    position: sticky;
    top: 100px;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary);
    font-size: 20px;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.info-content p + p {
    margin-top: 5px;
}

.info-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary);
}

/* Social Media */
.social-media {
    display: flex;
    gap: 12px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.social-btn i {
    color: var(--primary);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-btn:hover i {
    color: white;
}

/* Map Section */
.map-section {
    height: 300px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.map-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0 !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .contact-container {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hide decorative circles on mobile */
    .decorative-circle,
    .left-circle,
    .right-circle {
        display: none !important;
    }

    .contact-header {
        margin-bottom: 30px !important;
        padding: 0 5px !important;
    }

    .contact-title {
        font-size: 1.8rem !important;
    }

    .contact-subtitle {
        font-size: 0.95rem !important;
    }

    .contact-form-wrapper {
        padding: 20px 10px !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form {
        width: 100% !important;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .contact-form .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }

    .contact-form .form-group.full-width {
        margin-bottom: 15px !important;
    }

    .contact-form label {
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 10px !important;
        font-size: 0.9rem !important;
        box-sizing: border-box !important;
    }

    .captcha-wrapper {
        flex-direction: column !important;
        width: 100% !important;
    }

    .captcha-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .captcha-image img {
        max-width: 100% !important;
        height: auto !important;
    }

    .contact-info-card {
        padding: 25px 15px !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-info-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
    }

    .info-item {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }

    .info-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }

    .info-content h4 {
        font-size: 1rem !important;
    }

    .info-content p {
        font-size: 0.9rem !important;
    }

    .social-media {
        justify-content: center !important;
    }

    .social-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }

    .map-wrapper {
        padding: 0 10px !important;
    }

    .map-wrapper iframe {
        height: 300px !important;
        width: 100% !important;
    }

    .submit-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 8px !important;
    }

    .contact-title {
        font-size: 1.6rem !important;
    }

    .contact-form-wrapper {
        padding: 18px 8px !important;
    }

    .contact-info-card {
        padding: 20px 10px !important;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 8px !important;
    }

    .submit-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .social-media {
        justify-content: center;
    }
}


/* ==================== About Us Page Styles ==================== */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.about-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--primary);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-title .highlight {
    color: var(--primary);
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.who-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.image-badge i {
    color: white;
    font-size: 24px;
}

.image-badge span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.who-text .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 20px;
}
.faq-title{
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.who-text .section-title .highlight {
    color: var(--primary);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 20px;
    line-height: 1.6;
}

.who-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    color: white;
    font-size: 36px;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 80px;
}

.approach-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 12px;
}

.approach-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section-title-white {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.section-title-white .highlight {
    color: var(--primary);
}

.section-subtitle-white {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-navy);
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-category {
    margin-bottom: 60px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.tech-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.tech-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tech-item {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: white;
}

.tech-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.tech-item:hover .tech-icon i {
    color: white;
}

/* Brand Colors for Technology Icons */
.tech-item .fa-react { color: #61DAFB !important; }
.tech-item .fa-angular { color: #DD0031 !important; }
.tech-item .fa-vuejs { color: #42B883 !important; }
.tech-item .fa-js { color: #F7DF1E !important; }
.tech-item .fa-html5 { color: #E34F26 !important; }
.tech-item .fa-css3-alt { color: #1572B6 !important; }
.tech-item .fa-node-js { color: #339933 !important; }
.tech-item .fa-python { color: #3776AB !important; }
.tech-item .fa-php { color: #777BB4 !important; }
.tech-item .fa-laravel { color: #FF2D20 !important; }
.tech-item .fa-java { color: #007396 !important; }
.tech-item .fa-database { color: #00758F !important; }
.tech-item .fa-android { color: #3DDC84 !important; }
.tech-item .fa-apple { color: #000000 !important; }
.tech-item .fa-mobile-alt { color: #61DAFB !important; }
.tech-item .fa-mobile { color: #02569B !important; }
.tech-item .fa-swift { color: #FA7343 !important; }
.tech-item .fa-code { color: #7F52FF !important; }
.tech-item .fa-server { color: #336791 !important; }
.tech-item .fa-leaf { color: #47A248 !important; }
.tech-item .fa-aws { color: #FF9900 !important; }
.tech-item .fa-microsoft { color: #0078D4 !important; }
.tech-item .fa-shopify { color: #96BF48 !important; }
.tech-item .fa-wordpress { color: #21759B !important; }
.tech-item .fa-wix { color: #9146FF !important; }
.tech-item .fa-magento { color: #EE672F !important; }

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.about-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: white;
    color: var(--text-navy);
    border: 2px solid white;
}

.cta-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tech-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0 50px;
    }

    .about-hero-container {
        padding: 0 20px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .who-we-are-section,
    .mission-vision-section,
    .approach-section,
    .industries-section,
    .technologies-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .who-container,
    .mv-container,
    .approach-container,
    .industries-container,
    .tech-container {
        padding: 0 20px;
    }

    .section-title,
    .section-title-white {
        font-size: 2rem;
    }

    .section-subtitle,
    .section-subtitle-white {
        font-size: 1rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-item {
        flex-direction: column;
        padding: 25px;
    }

    .approach-number {
        font-size: 2.5rem;
    }

    .about-cta-container {
        padding: 50px 30px;
    }

    .about-cta-container h2 {
        font-size: 1.8rem;
    }

    .about-cta-container p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid-5,
    .tech-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==================== Portfolio Page Styles ==================== */

/* Portfolio Hero Section */
.portfolio-hero-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 80px 0 0px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.portfolio-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.portfolio-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.portfolio-hero-title .highlight {
    color: var(--primary);
}

.portfolio-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.filter-btn i {
    font-size: 16px;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 40px 0 50px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
}

.portfolio-container {

    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px 0px 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.portfolio-item {
    /* background: rgba(30, 58, 95, 0.6); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bg-gray);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(74, 144, 226, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0;
    visibility: hidden;
}

.view-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.portfolio-item:hover .view-btn {
    transform: scale(1);
}

.view-btn i {
    color: var(--primary);
    font-size: 22px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 30px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
}

.portfolio-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.portfolio-meta {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary);
    font-size: 14px;
}

.meta-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Portfolio Pagination */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    color: white;
}

.prev-btn,
.next-btn {
    width: 45px;
}

/* Clients Section */
.clients-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    min-height: 100px;
}

.client-logo:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        padding: 60px 0 50px;
    }

    .portfolio-hero-container {
        padding: 0 20px;
    }

    .portfolio-hero-title {
        font-size: 2.2rem;
    }

    .portfolio-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .portfolio-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .portfolio-grid-section {
        padding: 60px 0;
    }

    .portfolio-container {
        padding: 0 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .portfolio-image {
        height: 220px;
    }

    .portfolio-content {
        padding: 25px;
    }

    .portfolio-title {
        font-size: 1.2rem;
    }

    .portfolio-description {
        font-size: 0.9rem;
    }

    .clients-section {
        padding: 60px 0;
    }

    .clients-container {
        padding: 0 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .client-logo {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 1.8rem;
    }

    .filter-btn span {
        display: none;
    }

    .filter-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}


/* ==================== Testimonials Page Styles ==================== */

/* Testimonials Hero Section */
.testimonials-hero-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.testimonials-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.testimonials-hero-title .highlight {
    color: var(--primary);
}

.testimonials-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-left: 5px solid var(--primary);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
    border-left-width: 5px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: 24px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header .section-title {
    color: white;
}

.faq-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(32, 58, 67, 0.8) 50%, rgba(44, 83, 100, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(0, 212, 255, 0.05);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    color: white;
    font-size: 20px;
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.faq-arrow {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-arrow i {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    background: var(--primary);
}

.faq-item.active .faq-arrow i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 30px 95px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Testimonials CTA Section */
.testimonials-cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.testimonials-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonials-cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-hero-section {
        padding: 60px 0 50px;
    }

    .testimonials-hero-container {
        padding: 0 20px;
    }

    .testimonials-hero-title {
        font-size: 2.2rem;
    }

    .testimonials-hero-subtitle {
        font-size: 1rem;
    }

    .testimonials-grid-section,
    .faq-section,
    .testimonials-cta-section {
        padding: 60px 0;
    }

    .testimonials-container,
    .faq-container {
        padding: 0 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .faq-question {
        padding: 20px 20px;
        gap: 15px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon i {
        font-size: 18px;
    }

    .faq-text {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 25px 75px;
        font-size: 0.95rem;
    }

    .testimonials-cta-container {
        padding: 50px 30px;
    }

    .testimonials-cta-container h2 {
        font-size: 1.8rem;
    }

    .testimonials-cta-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero-title {
        font-size: 1.8rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}


/* ==================== Services Page Styles ==================== */

/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.services-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.hero-icon i {
    color: white;
    font-size: 40px;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.services-hero-title .highlight {
    color: var(--primary);
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Service Detail Section */
.service-detail-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.service-detail-section.alt {
    background: var(--bg-light);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(15, 32, 39, 0.8);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features-list li i {
    color: var(--primary);
    font-size: 18px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.service-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-detail-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary);
    height: 350px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-section:hover .image-wrapper img {
    transform: scale(1.05);
}

/* Core Services Grid Section */
.core-services-grid-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-navy) 0%, var(--medium-dark) 100%);
    position: relative;
    overflow: hidden;
}

.core-services-grid-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

.core-services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.core-services-grid-section .section-title {
    color: white;
    margin-bottom: 15px;
}

.core-services-grid-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.core-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.core-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.core-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.core-service-card:hover .core-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.core-service-icon i {
    color: white;
    font-size: 36px;
}

.core-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.core-service-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Services Page */
@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 0;
    }

    .services-hero-container {
        padding: 0 20px;
    }

    .services-hero-title {
        font-size: 2.2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-section,
    .core-services-grid-section {
        padding: 60px 0;
    }

    .service-detail-container,
    .core-services-grid-container {
        padding: 0 20px;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .service-detail-description {
        font-size: 1rem;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .core-service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.8rem;
    }

    .service-detail-title {
        font-size: 1.6rem;
    }
}


/* ===================================
   Service Detail Pages
   =================================== */

/* Hero Section */
.service-detail-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service Offerings Section */
.service-offerings {
    padding: 80px 0;
    background: #ffffff;
}

.offering-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
}

.offering-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.offering-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.offering-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 25px;
    text-align: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

.tech-icon-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    height: 100%;
}

.tech-icon-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.tech-icon-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

/* Brand Colors for Technology Icons */
.tech-icon-item .fa-react {
    color: #61DAFB;
}

.tech-icon-item .fa-vuejs {
    color: #42b883;
}

.tech-icon-item .fa-angular {
    color: #DD0031;
}

.tech-icon-item .fa-js {
    color: #F7DF1E;
}

.tech-icon-item .fa-node-js {
    color: #339933;
}

.tech-icon-item .fa-python {
    color: #3776AB;
}

.tech-icon-item .fa-php {
    color: #777BB4;
}

.tech-icon-item .fa-laravel {
    color: #FF2D20;
}

/* AI Technology Icons - Brand Colors */
.tech-icon-item .fa-brain {
    color: #FF6F00;
}

.tech-icon-item .fa-fire {
    color: #EE4C2C;
}

.tech-icon-item .fa-cube {
    color: #D00000;
}

.tech-icon-item .fa-chart-bar {
    color: #F7931E;
}

.tech-icon-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-navy);
}

/* Development Process Section */
.development-process {
    padding: 80px 0;
    background: #ffffff;
}

.process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), #4A90E2);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    color: #ffffff;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Service Section */
.why-choose-service {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-image {
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #1a3a42 0%, #2C5364 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-cta-primary:hover {
    background: #00b8e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}


.btn-outline-cyan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-cyan:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-primary-cyan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary-cyan:hover {
    background: linear-gradient(135deg, #4A90E2, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-detail-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-row {
        gap: 30px;
    }
    
    .hero-stat-item h3 {
        font-size: 2rem;
    }
    
    .why-choose-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .service-detail-hero {
        padding: 100px 0 60px;
    }
    
    .service-detail-hero-title {
        font-size: 2rem;
    }
    
    .service-detail-hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat-item h3 {
        font-size: 1.8rem;
    }
    
    /* Add gap between button and image on mobile view */
    .service-detail-hero .col-lg-6:first-child {
        margin-bottom: 40px;
    }
    
    .tech-icons {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline-cyan,
    .btn-primary-cyan {
        width: 100%;
        justify-content: center;
    }
}


/* ===================================
   Mobile Applications Page Styles
   =================================== */

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background: #ffffff;
}

.platform-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.platform-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.platform-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.platform-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* App Feature Card Styling */
.app-feature-card {
    background: #556B78;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.app-feature-card:hover {
    transform: translateY(-8px);
    background: #657680;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.app-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.app-feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.app-feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.app-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.app-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Duplicate .feature-box styles removed - using the glassmorphism version above */

/* Responsive Design for Mobile App Page */
@media (max-width: 991px) {
    .platform-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .platform-icon {
        width: 70px;
        height: 70px;
    }
    
    .platform-icon i {
        font-size: 2rem;
    }
    
    .platform-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    .app-feature-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .app-feature-card h4 {
        font-size: 1.1rem;
    }
    
    .app-feature-card p {
        font-size: 0.9rem;
    }
}


/* ===================================
   Cybersecurity Page Styles
   =================================== */

/* Threats Section */
.threats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
}

.threats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.threats-section .container {
    position: relative;
    z-index: 2;
}

.threats-section .section-title,
.threats-section .section-subtitle {
    color: #ffffff;
}

.threat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.threat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.threat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.threat-card:hover .threat-icon {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
    transform: scale(1.1);
}

.threat-icon i {
    font-size: 2rem;
    color: #ff4444;
}

.threat-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.threat-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Security Layers Section */
.security-layers-section {
    padding: 80px 0;
    background: #ffffff;
}

/* ==================== Design Specializations Section ==================== */
.design-specializations {
    padding: 80px 0;
    background: #ffffff;
}

.specialization-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.specialization-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
    border-color: var(--primary);
}

.specialization-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 212, 255, 0.03) 100%);
}

.specialization-card.featured .featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.specialization-card:hover .spec-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.spec-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.specialization-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.specialization-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.spec-features {
    list-style: none;
    padding: 0;
}

.spec-features li {
    font-size: 0.95rem;
    color: var(--text-gray);
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.spec-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.specialization-card:hover .spec-features li i {
    transform: scale(1.2);
}

/* ==================== Design Tools - Brand Colors ==================== */
/* Adobe Creative Suite */
.tech-icon-item .adobe-creative-suite {
    color: #EA1D25;
}

.tech-icon-item .fa-adobe {
    color: #EA1D25;
}

/* Figma */
.tech-icon-item .figma-icon {
    color: #F24E1E;
}

.tech-icon-item .fa-figma {
    color: #F24E1E;
}

/* Sketch */
.tech-icon-item .sketch-icon {
    color: #F3A9D1;
}

/* Adobe XD */
.tech-icon-item .adobe-xd {
    color: #FF26BE;
}

/* After Effects */
.tech-icon-item .after-effects {
    color: #00B8E6;
}

.tech-icon-item .fa-film {
    color: #00B8E6;
}

/* Blender 3D */
.tech-icon-item .blender-icon {
    color: #F57C00;
}

.tech-icon-item .fa-image {
    color: #F57C00;
}

/* Cinema 4D */
.tech-icon-item .cinema-4d {
    color: #00A8FF;
}

.tech-icon-item .fa-pen {
    color: #00A8FF;
}

/* CorelDRAW */
.tech-icon-item .coreldraw-icon {
    color: #000000;
}

.tech-icon-item .fa-palette {
    color: #000000;
}

.security-layers {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.layer-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateX(10px);
}

.layer-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.layer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.layer-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.layer-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 8px;
}

.layer-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compliance-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.compliance-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-10px);
}

.compliance-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.compliance-card:hover .compliance-badge {
    transform: scale(1.1) rotate(5deg);
}

.compliance-badge i {
    font-size: 2.5rem;
    color: #ffffff;
}

.compliance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.compliance-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Cybersecurity Page */
@media (max-width: 991px) {
    .layer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .layer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .layer-text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .threat-card {
        margin-bottom: 20px;
    }
    
    .layer-item {
        padding: 20px;
    }
    
    .layer-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .layer-icon {
        width: 60px;
        height: 60px;
    }
    
    .layer-icon i {
        font-size: 1.5rem;
    }
    
    .compliance-card {
        margin-bottom: 20px;
    }
}


/* ===================================
   Cloud Solutions Page Styles
   =================================== */

/* Cloud Providers Section */
.cloud-providers-section {
    padding: 80px 0;
    background: #ffffff;
}

.provider-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.provider-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.provider-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.provider-card:hover .provider-logo {
    transform: scale(1.1);
}

.provider-logo i {
    font-size: 5rem;
}

/* Brand Colors for Cloud Providers */
.provider-logo .fa-aws {
    color: #FF9900;
}

.provider-logo .fa-microsoft {
    color: #00A4EF;
}

.provider-logo .fa-google {
    color: #4285F4;
}

.provider-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
    text-align: center;
}

.provider-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.provider-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.provider-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-services li:last-child {
    border-bottom: none;
}

.provider-services i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Cloud Benefits Section */
.cloud-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 5 Column Grid for Migration Process */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .col-lg-2-4 {
        width: 100%;
    }
    
    .provider-card {
        margin-bottom: 20px;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .provider-logo i {
        font-size: 4rem;
    }
}


/* ===================================
   ERP Systems Page Styles
   =================================== */

/* ERP Modules Section */
.erp-modules-section {
    padding: 80px 0;
    background: #ffffff;
}

.module-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    text-align: center;
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.module-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    width: 100%;
    text-align: center;
}

.module-icon i::before {
    display: inline-block;
    text-align: center;
}

.module-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.module-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary), #4A90E2);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    line-height: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.industry-card:hover .industry-icon i {
    color: #ffffff;
}

.industry-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for ERP Page */
@media (max-width: 767px) {
    .module-card,
    .industry-card {
        margin-bottom: 20px;
    }
}


/* ===================================
   AI Systems Page Styles
   =================================== */

/* AI Capabilities Section */
.ai-capabilities-section {
    padding: 80px 0;
    background: #ffffff;
}

.capability-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    text-align: center;
}

.capability-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.capability-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
}

.capability-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    width: 100%;
    text-align: center;
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 15px;
}

.capability-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.capability-features li {
    font-size: 0.95rem;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* AI Use Cases Section */
.ai-usecases-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.usecase-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.usecase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.usecase-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.usecase-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.usecase-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usecase-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    width: 100%;
    text-align: center;
}

.usecase-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 10px;
}

.usecase-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for AI Page */
@media (max-width: 991px) {
    .usecase-content {
        flex-direction: column;
        text-align: center;
    }
    
    .usecase-icon {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .capability-card {
        margin-bottom: 20px;
    }
    
    .usecase-card {
        margin-bottom: 20px;
    }
    
    .usecase-number {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ===================================
   Team Page Styles
   =================================== */

/* Team Hero Section */
.team-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    overflow: hidden;
}

.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.team-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.team-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Quote Section */
.team-quote-section {
    padding: 80px 0;
    background: #ffffff;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.quote-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-navy);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.quote-author {
    margin-top: 20px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Leadership Team Section */
.leadership-team-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Department Team Sections */
.department-team-section {
    padding: 80px 0;
    background: #ffffff;
}

.department-team-section.alt-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

/* Leadership Card Special Styling */
.leadership-card {
    border: 3px solid var(--primary);
}

.leadership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #4A90E2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .image-overlay {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .social-link {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .social-link:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:hover .social-link:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:hover .social-link:nth-child(3) {
    transition-delay: 0.3s;
}

.social-link:hover {
    background: var(--text-navy);
    color: #ffffff;
    transform: translateY(0) scale(1.1);
}

.social-link i {
    font-size: 1.1rem;
}

/* Team Info */
.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Team CTA Section */
.team-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 991px) {
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .quote-box {
        padding: 40px 30px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .team-hero-section {
        padding: 100px 0 60px;
    }
    
    .team-hero-title {
        font-size: 2rem;
    }
    
    .team-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quote-box {
        padding: 30px 20px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .leadership-badge {
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}
