/* Inter font is loaded via Google Fonts link in HTML */

		/* Original Growthally Blue and Golden Color System */
		:root {
			/* Primary Blue Theme */
			--primary-blue: #0f1941;
			--secondary-blue: #0f1941;
			--accent-blue: #0f1941;
			--dark-blue: #0f1941;
			--royal-blue: #0f1941;
			--navy-blue: #0f1941;
			--light-blue: #e6f3ff;
			
		/* Golden Accents */
		--golden-primary: #ffd700;
		--golden-secondary: #f4e4c1;
		--golden-accent: #ffd700;
		--golden-light: #fff8dc;
			
			/* Text Colors */
			--text-dark: #0f1941;
			--text-medium: #0f1941;
			--text-light: #6b7280;
			--text-white: #ffffff;
			
			/* Background Colors */
			--white: #ffffff;
			--light-gray: #f8fafc;
			--medium-gray: #e2e8f0;
			--border-color: #e2e8f0;
			
		/* Gradient Colors */
		--gradient-primary: linear-gradient(135deg, #0f1941 0%, #0f1941 100%);
		--gradient-secondary: linear-gradient(135deg, #0f1941 0%, #0f1941 100%);
		--gradient-golden: linear-gradient(135deg, #ffd700 0%, #f4e4c1 100%);
		--gradient-light: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
			
			/* Font Family */
			--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			
			/* Typography Scale */
			--font-size-base: 16px;
			--font-size-sm: 0.875rem;
			--font-size-md: 1rem;
			--font-size-lg: 1.125rem;
			--font-size-xl: 1.25rem;
			--font-size-2xl: 1.5rem;
			--font-size-3xl: 1.875rem;
			--font-size-4xl: 2.25rem;
			--font-size-5xl: 3rem;
			
			/* Line Heights */
			--line-height-tight: 1.2;
			--line-height-normal: 1.5;
			--line-height-relaxed: 1.75;
			
			/* Letter Spacing */
			--letter-spacing-tight: -0.02em;
			--letter-spacing-normal: 0;
			--letter-spacing-wide: 0.025em;
		}

/* Base body styling */
/* Reset for full-screen sections */
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: var(--line-height-normal);
	font-weight: 400;
	letter-spacing: var(--letter-spacing-normal);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#wrapper_main {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

#wrapper_scroll {
	margin: 0;
	padding: 0;
	width: 100%;
}

/* Lightweight layout helpers (bootstrap-like grid) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"],
.row > [class^="col"] {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

@media (min-width: 992px) {
    .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 991px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 767px) {
    .row > [class*="col-"],
    .row > [class^="col"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Shared header/navigation layout */
header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999998; /* High z-index for header */
    background: transparent;
    display: flex;
    align-items: center;
    transition: height 0.25s ease-in-out;
}

header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .back_top_mobile {
    display: none;
}

.logo_main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo_main .registered_mark {
    transform: translateX(-6px);
    margin: 0;
    font-weight: 700;
}

.logo_main a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo_main a img {
    height: 56px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

#menu_main {
    margin-left: auto;
    display: block;
}

#menu_main ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font: 600 0.78rem "Noto Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    position: relative;
    text-decoration: none;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu Styles with Enhanced Effects */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Base dropdown styles - mobile first */
.dropdown-menu {
    display: none !important;
    position: static;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: #0f1941;
    text-decoration: none;
}

/* Desktop dropdown styles - only apply above 991px */
@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 280px;
        width: auto;
        background: var(--white);
        box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
        border-radius: 12px;
        padding: 12px 0;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        display: none;
        flex-direction: column !important; /* Override flex row from index.html */
        transform: translateY(-15px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        border: 1px solid rgba(62, 120, 173, 0.1);
    }
}

/* Desktop dropdown styles - only apply above 991px */
@media (min-width: 992px) {
    /* Add arrow/triangle pointer to dropdown */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--white);
        filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.05));
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: flex !important; /* Show as flex column when active - override index.html */
        transform: translateY(0) scale(1);
        overflow: visible;
        max-height: none;
    }

    .dropdown-menu li {
        margin: 0;
        padding: 0;
        display: block !important; /* Force block display - override index.html inline-block */
        height: auto !important; /* Override fixed height from index.html */
    }

    .dropdown-menu li a {
        display: block;
        padding: 12px 24px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
        position: relative;
        border-left: 3px solid transparent;
    }

    /* Animated underline effect */
    .dropdown-menu li a::before {
        content: '';
        position: absolute;
        left: 24px;
        bottom: 10px;
        width: 0;
        height: 2px;
        background: var(--gradient-golden);
        transition: width 0.3s ease;
    }

    .dropdown-menu li a::after {
        display: none;
    }

    .dropdown-menu li a:hover {
        background: linear-gradient(to right, rgba(212, 175, 55, 0.08), transparent);
        color: var(--primary-blue);
        padding-left: 28px;
        border-left-color: var(--golden-primary);
    }

    .dropdown-menu li a:hover::before {
        width: calc(100% - 52px);
    }

    /* Add subtle animation to dropdown items */
    .nav-dropdown.active .dropdown-menu li {
        animation: dropdownItemFadeIn 0.4s ease forwards;
        opacity: 0;
    }

    .nav-dropdown.active .dropdown-menu li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .nav-dropdown.active .dropdown-menu li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .nav-dropdown.active .dropdown-menu li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .nav-dropdown.active .dropdown-menu li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .nav-dropdown.active .dropdown-menu li:nth-child(5) {
        animation-delay: 0.25s;
    }
}

@keyframes dropdownItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-cta {
    background: var(--gradient-primary);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    gap: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 10001; /* Above everything else */
    pointer-events: auto; /* Ensure it's clickable */
    outline: none;
}

.nav-toggle:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(62, 120, 173, 0.15);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Header styling */
#header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    z-index: 10000; /* Ensure header is above all content */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

/* Add scroll offset for all sections to account for fixed header */
section {
    scroll-margin-top: 70px;
}

#header .nav-wrapper {
    position: relative;
    z-index: 10000;
}

/* Keep logo always visible */
#header .logo_main {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Ensure smooth transitions for navigation */
#menu_main {
    transition: all 0.3s ease;
}

/* Desktop navigation - ensure it's always visible */
@media (min-width: 992px) {
    #menu_main {
        display: block !important;
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
}

/* Mobile responsive behavior */
@media (max-width: 991px) {
    /* Show hamburger menu */
    .nav-toggle {
        display: flex !important;
        z-index: 1000000 !important;
        position: relative !important;
    }

    /* Hide desktop CTA button */
    .nav-cta {
        display: none !important;
    }

    /* Mobile menu container - hidden by default */
    #menu_main {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        background: #ffffff !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
        z-index: 999999 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Mobile menu when active/open */
    #menu_main.active {
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        padding: 20px 0 !important;
        display: block !important;
    }
    
    /* MOBILE: Show all dropdown items as flat list - NO DROPDOWNS */
    .dropdown-menu {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        max-height: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Hide dropdown trigger icon on mobile */
    .dropdown-trigger .dropdown-icon {
        display: none !important;
    }
    
    /* Style dropdown trigger as regular link on mobile */
    .dropdown-trigger {
        pointer-events: none !important;
        cursor: default !important;
    }

    /* Reset desktop flex layout */
    #menu_main ul,
    .nav-links {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Menu items */
    .nav-links > li {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Menu links */
    .nav-links > li > a {
        display: block !important;
        padding: 16px 24px !important;
        color: #0f1941 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        text-transform: none !important;
        transition: background 0.2s ease !important;
        border-bottom: 1px solid #e2e8f0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999999 !important;
        position: relative !important;
    }

    .nav-links > li > a:hover {
        background: #f8fafc !important;
        color: #0f1941 !important;
    }

    .nav-links > li > a::after {
        display: none !important;
    }

    /* Dropdown trigger styling - make it look like section header */
    .dropdown-trigger {
        display: block !important;
        width: 100% !important;
        padding: 16px 24px !important;
        color: #0f1941 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        background: #f8fafc !important;
        border: none !important;
        text-align: left !important;
        cursor: default !important;
        pointer-events: none !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        border-bottom: 2px solid #e2e8f0 !important;
    }

    /* Dropdown menu items - indent them to show hierarchy */
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        transition: background 0.2s ease, padding-left 0.2s ease !important;
        color: #0f1941 !important;
        display: block !important;
    }

    .dropdown-menu li a:hover {
        background: #e2e8f0 !important;
        padding-left: 45px !important;
    }

    .dropdown-menu li a::before,
    .dropdown-menu li a::after {
        display: none !important;
    }
}

/* Transaction cards - REMOVED CONFLICTING RULES */

/* Ensure equal height for transaction rows - REMOVED to prevent affecting other sections */

/* Force equal heights using CSS Grid approach - ONLY for transaction cards */
.contact_content .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: nowrap !important;
    width: 100% !important;
    transition: all 0.3s ease;
}

.contact_content .row .col-sm-6 {
    display: flex !important;
    align-items: stretch;
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

/* Ensure every row has exactly 2 cards */
.contact_content .row .col-sm-6:first-child {
    grid-column: 1;
}

.contact_content .row .col-sm-6:last-child {
    grid-column: 2;
}

/* Desktop: 2 cards per row */
@media (min-width: 992px) {
    .contact_content .row {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        width: 100% !important;
        gap: 25px;
    }
    
    .contact_content .row .col-sm-6 {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
    }
}

/* Tablet: 2 cards per row */
@media (min-width: 769px) and (max-width: 991px) {
    .contact_content .row {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        width: 100% !important;
        gap: 20px;
    }
    
    .contact_content .row .col-sm-6 {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
    }
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
    .contact_content .row {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .contact_content .row .col-sm-6 {
        margin-bottom: 0;
        width: 100% !important;
        grid-column: 1 !important;
    }
    
    /* REMOVED CONFLICTING MEDIA QUERY RULES */
}

/* Small Mobile: 1 card per row with compact design */
@media (max-width: 576px) {
    .contact_content .row {
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin-bottom: 15px;
        min-height: auto;
    }
    
    .contact_content .row .col-sm-6 {
        width: 100% !important;
        grid-column: 1 !important;
    }
    
    /* REMOVED CONFLICTING MEDIA QUERY RULES */
}

/* REMOVED CONFLICTING ANIMATION RULES */

#header .logo_main a {
    color: var(--text-dark);
}

/* Navigation styling */
/* Footer styles */
footer {
    background: var(--light-blue);
    padding: 40px 0 20px;
    margin-top: 60px;
    color: var(--text-dark);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.footer-brand {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand img {
    max-width: 150px;
    height: auto;
}

.footer-tagline {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.25);
}

.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-column h5 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-column ul li {
    font-size: 14px;
}

.footer-column ul li a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-medium);
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    text-align: center;
    color: var(--text-medium);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-wrapper {
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-brand img {
        max-width: 130px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-column h5 {
        font-size: 14px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 0 12px;
    }
    
    .footer-brand img {
        max-width: 110px;
    }
    
    .footer-cta {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
    }
    
    .footer-column h5 {
        font-size: 13px;
    }
    
    .footer-column ul li {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
}

/* Responsive Navigation */
@media (max-width: 992px) {
    #header {
        padding: 10px 0;
    }
    
    .logo_main {
        max-width: 180px;
        padding: 20px 0 0 0;
    }
    
    .logo_main a img {
        max-height: 50px;
    }
    
    #menu_main ul li a {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 8px 0;
    }
    
    .logo_main {
        max-width: 160px;
        padding: 15px 0 0 0;
    }
    
    .logo_main a img {
        max-height: 45px;
    }
    
    #menu_main {
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    #menu_main ul li a {
        font-size: 13px;
        padding: 6px 10px;
        border-bottom: 1px solid var(--border-color);
    }
    
    #menu_main ul li a:hover {
        background: var(--light-blue);
    }
}

@media (max-width: 576px) {
    #header {
        padding: 5px 0;
    }
    
    .logo_main {
        max-width: 140px;
        padding: 10px 0 0 0;
    }
    
    .logo_main a img {
        max-height: 40px;
    }
    
    #menu_main ul li a {
        font-size: 12px;
        padding: 5px 8px;
    }
}


/* About Us Image Effects */
.about_us img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about_us img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 81, 147, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

.about_us img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about_us img:hover::before {
    opacity: 1;
}

/* Add a subtle border effect */
.about_us .col-sm-6:first-child {
    position: relative;
    padding: 20px;
}

.about_us .col-sm-6:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--golden-primary));
    border-radius: 12px;
    padding: 3px;
    z-index: -1;
}

/* Image container with enhanced styling */
.about_us .col-sm-6:first-child {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Add floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Smooth bounce animation on load */
@keyframes smoothBounce {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px);
    }
    80% {
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about_us img {
    animation: float 6s ease-in-out infinite;
}

/* Add a subtle glow effect on hover */
.about_us img:hover {
    filter: brightness(1.1) contrast(1.05);
}

/* Responsive adjustments for About Us image */
@media (max-width: 768px) {
    .about_us img {
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .about_us .col-sm-6:first-child {
        padding: 15px;
        border-radius: 12px;
    }
    
    .about_us img:hover {
        transform: translateY(-4px) scale(1.01);
    }
}



.vertical-divider {
    width: 2px;
    height: 200px;
    background: var(--primary-blue);
    flex-shrink: 0;
}




/* About section styling */
.about_us {
    background-color: var(--white);
}

.about_us h2 {
    color: var(--primary-blue);
}

/* Achievements section styling */
.prices {
    background: var(--light-gray);
}

.prices h2 {
    color: var(--text-dark);
}

.prices_item {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.prices_item h3 {
    color: var(--primary-blue);
}

.prices_item h4 {
    color: var(--text-dark);
}

/* Services section styling - Professional */
.services {
    background: #ffffff;
    position: relative;
}

.services h2 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 20px;
}

.services_item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services_item:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.services_item h4 {
    color: #1f2937;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services_item:hover h4 {
    color: #3b82f6;
}

.services_item .plus-white {
    transition: all 0.3s ease;
    pointer-events: none;
}

.services_item:hover .plus-white {
    transform: rotate(45deg);
}

.services_item ul {
    transition: all 0.3s ease;
}

/* Compact Services Styling */
.services_item_compact {
    margin-bottom: 15px;
}

.services_item_compact .service-header:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.services_item_compact .service-header:hover h4 {
    color: #3b82f6;
}

.services_item_compact .service-header:hover .plus-white {
    background: #1d4ed8;
    transform: rotate(45deg);
}

.services_item_compact:hover .service-details {
    max-height: 200px !important;
    padding: 20px !important;
}

.services_item_compact .service-details {
    transition: all 0.3s ease;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services_item {
        margin-bottom: 20px;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services_item_compact {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .services_item {
        padding: 20px;
    }
    
    .services_item h4 {
        font-size: 16px;
    }
    
    .services_item_compact .service-header {
        padding: 15px;
    }
    
    .services_item_compact .service-details {
        padding: 15px !important;
    }
}

/* Team section styling */
.our_team {
    background: var(--light-gray);
}

.our_team h2 {
    color: var(--text-dark);
}

.our_team__item {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* We Are Growthally Section */
.we-are-growthally {
  background-color: #ffffff;
  padding: 3rem 0;
}

/* Scrollspy Navigation */
#we-are-scrollspy ul.nav-pills { 
  top: 10em; 
} 

#we-are-scrollspy .nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  background-color: unset;
  color: #252525;
  font-weight: bold;
  transition-duration: .1s;
}

/* Custom Typography */
.cust-lh-1-1 {
  line-height: 1.1;
}

.cust-fs-4 {
  font-size: 2.5rem;
}

.cust-color {
  color: #50f093;
}

.cust-text-gray-0 {
  color: #6d6d6d;
}

/* Vision Banner */
.our-vision-banner {
  background: url("https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg") no-repeat;
  background-size: cover;
  min-height: 300px;
}

.our-vision-content {
  margin-left: unset;
}

/* Mission Banner */
.our-mission-banner {
  background: url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg") no-repeat;
  background-size: cover;
  min-height: 300px;
}

.our-mission-content {
  margin-right: unset;
}

/* Leadership Images */
.leader-img {
  position: relative;
}

.leader-img img {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  opacity: 1;
}

/* Team Details Container */
.team-details-container {
  min-height: 400px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.team-details-container h3 {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 15px;
}

.team-details-container h4 {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-details-container .position {
  color: #0056b3;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.team-details-container .bio {
  color: #0056b3;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.team-details-container .specialties {
  margin-bottom: 15px;
}

.team-details-container .specialties span {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 4px 8px;
  margin: 2px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.team-details-container .linkedin-link {
  color: #0077b5;
  text-decoration: none;
  font-weight: 600;
}

.team-details-container .linkedin-link:hover {
  text-decoration: underline;
}

/* Team Member Images */
.team-member-img {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.team-member-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-member-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

/* Fix team images on mobile - fixed size */
@media (max-width: 768px) {
  .team-member-img img {
    width: 100%;
    min-width: 240px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .our_team__item img {
    width: 100%;
    min-width: 240px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* Founders Section - Alternating Layout */
.founders-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(62, 120, 173, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.founder-row:hover {
  box-shadow: 0 8px 25px rgba(62, 120, 173, 0.2);
  transform: translateY(-2px);
}

.founder-row.reverse {
  flex-direction: row-reverse;
}

.founder-photo {
  flex: 0 0 240px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 15px rgba(62, 120, 173, 0.2);
}

.founder-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.founder-row:hover .founder-photo img {
  transform: scale(1.05);
}

.founder-content {
  flex: 1;
  padding: 0 20px;
}

.founder-content h3 {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.founder-content .position {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #3e78ad, #2a5a8a);
  border-radius: 20px;
  display: inline-block;
}

.founder-content .bio {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.founder-content .linkedin-link {
  color: #3e78ad;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.founder-content .linkedin-link:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Mobile Responsive - Founders Section */
@media (max-width: 768px) {
  .founder-row,
  .founder-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
  
  .founder-photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
  
  .founder-photo img {
    height: 260px;
  }
  
  .founder-content {
    padding: 0;
  }
  
  .founder-content h3 {
    font-size: 1.5rem;
  }
  
  .founder-content .bio {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* Default content styling */
.default-content h3 {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 15px;
}

.default-content p {
  color: #0056b3;
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive Design */
@media (min-width: 768px) {
  .our-vision-content {
    margin-left: -60px;
  }
  
  .our-mission-content {
    margin-right: -60px;
  }
}

.our_team__item h4 {
    color: var(--text-dark);
}

.our_team__item span {
    color: var(--primary-blue);
}

/* Contact section styling */
.contact {
    background: var(--white);
}

.contact h2 {
    color: var(--text-dark);
}

.contact_address {
    background: var(--light-gray);
}

.contact-head-office {
    color: var(--primary-blue);
}

.contact-link {
    color: var(--secondary-blue);
}

.contact-link:hover {
    color: var(--primary-blue);
}

/* Button styling */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(115, 131, 177, 0.4)
}

/* Text styling */
.text-bold-about {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Company Brochure Section Styling */
.brochure-section {
    background: #0f1941;
    padding: 50px 0;
    margin: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 250px;
    height: 250px;
}

/* Fixed Background Video - Contained within section */
.brochure-bg-video {
    display: none;
}

/* Overlay for better text readability */
.brochure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.brochure-content {
    position: relative;
    z-index: 2;
    padding: 15px 0;
    text-align: center;
}

.brochure-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brochure-description {
    font-size: 1rem;
    color: #e6f3ff;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.brochure-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

.download-action {
    position: relative;
    z-index: 2;
    padding: 15px 10px;
}

.download-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}


.brochure-download {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.download-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.download-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.file-size {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3e78ad, #2a5a8a);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 120, 173, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #2a5a8a, #1e3a5f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 120, 173, 0.4);
    color: #fff;
    text-decoration: none;
}

.download-btn i {
    font-size: 1.1rem;
}

/* Responsive Design for Brochure Section */
@media (max-width: 768px) {
    .brochure-section {
        padding: 40px 0;
        min-height: 220px;
        height: 220px;
    }
    
    .brochure-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brochure-title {
        font-size: 1.2rem;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .brochure-description {
        font-size: 0.9rem;
        color: #e6f3ff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .download-action {
        padding: 10px;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .brochure-section {
        padding: 30px 0;
        min-height: 200px;
        height: 200px;
    }
    
    .brochure-title {
        font-size: 1.1rem;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .brochure-description {
        font-size: 0.85rem;
        color: #e6f3ff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }
    
    .download-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Footer styling */
footer {
    background: #e6f3ff !important;
    color: #1e3a8a;
    padding: 60px 0 30px;
    margin: 0;
    position: relative;
    z-index: 10 !important;
    border-top: none;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.footer-tagline {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

		.social-links {
			display: flex;
			gap: 15px;
			justify-content: flex-start;
			align-items: center;
		}
		
		.social-links a {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 40px;
			height: 40px;
			background: #3e78ad;
			color: #ffffff;
			border-radius: 50%;
			text-decoration: none;
			transition: all 0.3s ease;
			font-size: 16px;
			box-shadow: 0 2px 6px rgba(62, 120, 173, 0.2);
		}
		
		.social-links a:hover {
			background: #1e3a8a;
			transform: translateY(-2px);
			box-shadow: 0 4px 12px rgba(62, 120, 173, 0.4);
		}
		
		.social-icon {
			width: 20px;
			height: 20px;
			transition: all 0.3s ease;
		}

.footer-links h5 {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #3e78ad;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e3a8a;
}

.footer-links p {
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links i {
    color: #3e78ad;
    width: 16px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(62, 120, 173, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive Footer */
@media (max-width: 992px) {
    footer {
        padding: 35px 0 18px;
    }
    
    .footer-logo {
        max-width: 140px;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        max-width: 120px;
        margin: 0 auto 15px;
        display: block;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-links {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-links h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-links a,
    .footer-links p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 25px 0 12px;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-links h5 {
        font-size: 14px;
    }
    
    .footer-links a,
    .footer-links p {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .footer-bottom small {
        font-size: 9px;
    }
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-row {
        padding: 40px 0;
    }
    
    .about-row h2 {
        font-size: 2rem;
    }
    
    .about-row p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .about-row {
        padding: 30px 0;
    }
    
    .about-row h2 {
        font-size: 1.8rem;
    }
    
    .about-row p {
        font-size: 0.9rem;
    }
}

/* Responsive Services Section */
@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 30px 0;
    }
    
    .services h2 {
        font-size: 1.8rem;
    }
}

/* REMOVED CONFLICTING RESPONSIVE RULES */

/* Responsive Team Section */
@media (max-width: 768px) {
    .we-are-growthally {
        padding: 10px 0;
    }
    
    .founders-section,
    .team-members-section {
        padding: 20px 15px;
    }
    
    .founders-title,
    .team-members-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .we-are-growthally {
        padding: 10px 0;
    }
    
    .founders-section,
    .team-members-section {
        padding: 15px 10px;
    }
    
    .founders-title,
    .team-members-title {
        font-size: 1.1rem;
    }
}

/* Responsive Testimonials Section */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact_address {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 30px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact_address {
        padding: 15px 0;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
    
    .footer-links h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .footer-links h5 {
        font-size: 15px;
    }
}

/* Careers Table Styling */
.careers-table-container {
	overflow-x: auto;
	position: relative;
}

.careers-table-container::after {
	content: "← Scroll to see more →";
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
	opacity: 0.8;
	z-index: 5;
}

@media (min-width: 769px) {
	.careers-table-container::after {
		display: none;
	}
}

.careers-table {
	min-width: 700px;
}

.careers-table th {
	position: sticky;
	top: 0;
	z-index: 10;
}

.careers-table tbody tr:hover {
	background-color: #f8fafc !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.description-btn:hover {
	background: #1d4ed8 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.careers-table a:hover {
	background: #059669 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Job Description Modal Styling */
#jobModal {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

#jobModal > div {
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from { 
		opacity: 0;
		transform: translateY(-50px);
	}
	to { 
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design for Careers Table */
@media (max-width: 768px) {
	.careers-table-container {
		margin: 0 -15px;
		border-radius: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.careers-table {
		min-width: 500px;
	}
	
	.careers-table th,
	.careers-table td {
		padding: 15px 10px;
		font-size: 14px;
		white-space: nowrap;
	}
	
	.careers-table th {
		font-size: 14px;
	}
	
	.description-btn,
	.careers-table a {
		padding: 6px 12px;
		font-size: 12px;
	}
	
	.careers-container {
		padding: 4rem 0 !important;
	}
}

@media (max-width: 576px) {
	.careers-table-container {
		margin: 0 -10px;
	}
	
	.careers-table {
		min-width: 400px;
	}
	
	.careers-table th,
	.careers-table td {
		padding: 12px 8px;
		font-size: 13px;
	}
	
	.careers-table th {
		font-size: 13px;
	}
	
	.description-btn,
	.careers-table a {
		padding: 5px 10px;
		font-size: 11px;
	}
	
	.careers-container {
		padding: 3rem 0 !important;
	}
	
	.careers-container h2 {
		font-size: 1.3rem;
		margin-bottom: 0.8rem;
	}
	
	.careers-container h5 {
		font-size: 1rem !important;
	}
}

/* Testimonials Section Styling */
.testimonials {
	background: var(--bg-white);
	padding: 80px 0;
}

.testimonial-card {
	background: var(--bg-white);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hover-shadow);
}

.testimonial-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 2rem;
}

.testimonial-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.testimonial-content {
	font-size: 1.1rem;
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 1rem;
	object-fit: cover;
}

.author-info h5 {
	margin: 0;
	color: var(--text-dark);
	font-size: 1.1rem;
}

.author-info p {
	margin: 0;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.rating {
	color: #ffc107;
	margin-bottom: 1rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
	.testimonials {
		padding: 60px 0;
	}
	
	.testimonial-card {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.testimonial-video {
		margin-bottom: 1.5rem;
	}
	
	.testimonial-content {
		font-size: 1rem;
	}
	
	.author-image {
		width: 50px;
		height: 50px;
	}
	
	.author-info h5 {
		font-size: 1rem;
	}
	
	.author-info p {
		font-size: 0.85rem;
	}
	
	/* Video Testimonials Responsive */
	.video-testimonial-item {
		flex: 0 0 300px;
	}
	
	.video-testimonials-scroll {
		gap: 1.5rem;
	}
}

@media (max-width: 576px) {
	.testimonials {
		padding: 40px 0;
	}
	
	.testimonial-card {
		padding: 1rem;
	}
	
	.testimonial-content {
		font-size: 0.95rem;
	}
	
	/* Video Testimonials Mobile Responsive */
	.video-testimonial-item {
		flex: 0 0 280px;
		padding: 1rem;
	}
	
	.video-testimonials-scroll {
		gap: 1rem;
	}
	
	.video-testimonial-item h5 {
		font-size: 1.1rem;
	}
	
	.video-testimonial-item p {
		font-size: 0.9rem;
	}
}

/* Responsive adjustments */
    
    .service-item {
        font-size: 1rem;
    }
    
    .services_item {
        margin-bottom: 1rem;
    }

/* Clients Marquee Styling */
.clients-marquee-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 20px 0;
}

.clients-marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 40s linear infinite;
	gap: 60px;
	align-items: center;
}

.clients-marquee-track:hover {
	animation-play-state: paused;
}

.client-logo-item {
	flex-shrink: 0;
	width: 180px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.client-logo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(62, 120, 173, 0.15);
}

.client-logo-item img {
	max-width: 100%;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Responsive marquee */
@media (max-width: 768px) {
	.clients-marquee-track {
		gap: 40px;
		animation-duration: 30s;
	}
	
	.client-logo-item {
		width: 150px;
		height: 90px;
	}
	
	.client-logo-item img {
		max-height: 60px;
	}
}

@media (max-width: 576px) {
	.clients-marquee-track {
		gap: 30px;
		animation-duration: 25s;
	}
	
	.client-logo-item {
		width: 130px;
		height: 80px;
	}
	
	.client-logo-item img {
		max-height: 50px;
	}
}

/* ========================================
   INDEX_V2.HTML ADDITIONAL STYLES
   ======================================== */

/* ========================================
   HERO BANNER SECTION
   ======================================== */

.hero-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -70px;
    padding: 0;
    padding-top: 70px;
    background: #0f1941;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 65, 0.15);
    z-index: 2;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    animation: zoomInOut 15s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(-80px);
    opacity: 0;
    animation: smoothFadeInUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    animation: smoothFadeIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.headline-line1 {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.headline-line2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.powering-gradient {
    color: #ffffff;
    background: linear-gradient(135deg, #1a237e 0%, #0f1941 50%, #0d1533 100%);
    padding: 8px 20px;
    display: inline-block;
    border-radius: 8px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.growth-gold {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: gentleGlow 2s ease-in-out infinite alternate;
}

.golden-highlight {
    color: #ffd700; /* --golden-accent */
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    display: inline-block;
    animation: gentleGlow 2s ease-in-out infinite alternate;
}

.sub-headline {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    margin-top: 25px;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: smoothFadeIn 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

.services-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: smoothFadeIn 1.2s ease-out forwards;
    animation-delay: 1.1s;
}

.service-item {
    color: #000000; /* White text */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.5), 
                 0 0 30px rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-item:hover {
    color: #ffd700; /* --golden-accent */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
}

.golden-dot {
    color: #ffffff; /* White dots */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

@keyframes smoothFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(-80px);
    }
}

@keyframes smoothFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 
                     0 0 40px rgba(255, 215, 0, 0.4);
    }
}

/* Responsive Hero Banner */
@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content-wrapper {
        animation: smoothFadeInUpTablet 1.5s ease-out forwards;
        animation-delay: 0.3s;
        padding: 0 15px;
    }

    @keyframes smoothFadeInUpTablet {
        0% {
            opacity: 0;
            transform: translateY(-30px);
        }
        100% {
            opacity: 1;
            transform: translateY(-60px);
        }
    }

    .main-headline {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .headline-line1,
    .headline-line2 {
        word-wrap: break-word;
    }

    .powering-gradient {
        padding: 5px 14px;
        font-size: 0.95em;
    }

    .sub-headline {
        font-size: 0.9rem;
        margin-top: 18px;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .service-item {
        font-size: 0.95rem;
    }

    .services-row {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content-wrapper {
        animation: smoothFadeInUpMobile 1.5s ease-out forwards;
        animation-delay: 0.3s;
        padding: 0 10px;
    }

    @keyframes smoothFadeInUpMobile {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(-40px);
        }
    }

    .main-headline {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .headline-line1 {
        font-size: 1.5rem;
    }

    .headline-line2 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 1.5rem;
        justify-content: center;
    }

    .powering-gradient {
        padding: 4px 12px;
        font-size: 1rem;
        border-radius: 6px;
    }

    .growth-gold {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 0.85rem;
        margin-top: 15px;
        line-height: 1.4;
        padding: 0 5px;
    }

    .service-item {
        font-size: 0.85rem;
    }

    .services-row {
        gap: 0.8rem;
    }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */

.about-us-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.about-content {
    padding: 20px 0;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    text-align: justify;
}

.about-intro strong {
    color: #1e3a8a; /* --secondary-blue */
    font-weight: 500;
}

.about-description {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: justify;
    margin: 0;
}

/* Responsive About Us */
@media (max-width: 991px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        min-height: 400px;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 40px 0;
    }

    .about-us-grid {
        gap: 30px;
    }

    .about-image-wrapper img {
        min-height: 300px;
    }

    .about-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ========================================
   LIVE TRANSACTIONS MARQUEE SECTION
   ======================================== */

.transactions-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a8a; /* --secondary-blue */
    margin-bottom: 15px;
    margin-top: 0;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.transactions-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.transactions-marquee-track {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 15s linear infinite;
    will-change: transform;
}

.transactions-marquee-track:hover {
    animation-play-state: paused;
}

/* Disable hover pause on touch devices */
@media (hover: none) and (pointer: coarse) {
    .transactions-marquee-track:hover {
        animation-play-state: running;
    }
}

.transaction-card {
    flex-shrink: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.transaction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    border-radius: 12px 12px 0 0;
}

.transaction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 120, 173, 0.2);
    border-color: #3e78ad;
}

.transaction-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: #f8fafc;
    border-radius: 50%;
    padding: 15px;
}

.transaction-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transaction-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
    text-align: center;
}

.transaction-type {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
    text-align: center;
}

.transaction-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37; /* --golden-primary */
    text-align: center;
    margin-bottom: 12px;
}

.transaction-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #d1fae5;
    color: #065f46;
}

.status-active::before {
    content: '✓';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 8px;
    line-height: 12px;
    text-align: center;
}

.status-done {
    background: #dbeafe;
    color: #1e40af;
}

.status-done::before {
    content: '✓';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 8px;
    line-height: 12px;
    text-align: center;
}

.transaction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.transaction-progress {
    font-size: 0.75rem;
    color: #9ca3af;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Transactions */
@media (max-width: 768px) {
    .transactions-section {
        padding: 60px 0;
    }

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

    .transactions-marquee-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .transactions-marquee-track {
        gap: 20px;
        animation-duration: 10s;
    }

    .transaction-card {
        width: 240px;
    }
}

@media (max-width: 576px) {
    .transactions-section {
        padding: 40px 0;
    }

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

    .transactions-marquee-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .transactions-marquee-track {
        animation-duration: 12s;
        animation-play-state: running;
        gap: 12px;
    }

    .transaction-card {
        width: 150px;
        min-width: 150px;
        padding: 12px;
    }
    
    .transaction-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .transaction-logo img {
        max-width: 35px;
        max-height: 35px;
    }
    
    .transaction-company {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .transaction-type {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .transaction-amount {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .transaction-footer {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .transaction-status,
    .transaction-progress {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* ========================================
   ACHIEVEMENTS SECTION
   ======================================== */

.achievements-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #0f1941;
}

.achievements-bg-video {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    animation: zoomInOut 20s ease-in-out infinite;
}

.achievements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 65, 0.85);
    z-index: 2;
}

.achievements-content {
    position: relative;
    z-index: 3;
}

.achievements-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.achievement-card.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3e78ad 0%, #d4af37 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.achievement-card.animate-in::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(62, 120, 173, 0.3);
}

.achievement-icon i {
    font-size: 24px;
    color: #ffffff;
}

.achievement-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3e78ad;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.achievement-suffix {
    font-size: 1.6rem;
    color: #d4af37;
    font-weight: 600;
    margin-left: 4px;
}

.achievement-label {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    line-height: 1.3;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }
.achievement-card:nth-child(5) { animation-delay: 0.5s; }
.achievement-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Achievements */
@media (max-width: 991px) {
    .achievements-section {
        padding: 80px 0;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .achievement-card {
        padding: 25px 18px;
    }

    .achievement-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .achievement-icon i {
        font-size: 22px;
    }

    .achievement-number {
        font-size: 2.3rem;
    }

    .achievement-suffix {
        font-size: 1.4rem;
    }

    .achievement-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-card {
        padding: 25px 15px;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .achievement-icon i {
        font-size: 20px;
    }

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

    .achievement-suffix {
        font-size: 1.2rem;
    }

    .achievement-label {
        font-size: 0.85rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 60px 0;
    background: #ffffff;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(62, 120, 173, 0.15);
}

.service-header {
    position: relative;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 100px;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
}

.service-card:hover .service-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(62, 120, 173, 0.3);
    transition: all 0.3s ease;
}

.service-icon-wrapper i {
    font-size: 22px;
    color: #ffffff;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(62, 120, 173, 0.4);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-toggle i {
    font-size: 18px;
    color: #1a202c;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .service-toggle i {
    transform: rotate(45deg);
}

.service-card:hover .service-toggle {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.service-details {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0 0 12px 12px;
    max-height: none;
    overflow: visible;
    padding: 25px;
}

.service-card:hover .service-details {
    max-height: none;
    padding: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 12px 0 12px 30px;
    color: #4a5568;
    font-size: 0.95rem;
    position: relative;
    line-height: 1.8;
    opacity: 1;
    transform: translateX(0);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card:hover .service-features li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered card entrance */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Services */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-header {
        padding: 20px 18px;
    }

    .service-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .service-icon-wrapper i {
        font-size: 20px;
    }

    .service-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-header {
        padding: 20px 15px;
    }

    .service-header-content {
        gap: 12px;
    }

    .service-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .service-icon-wrapper i {
        font-size: 18px;
    }

    .service-title {
        font-size: 0.95rem;
    }

    .service-toggle {
        width: 36px;
        height: 36px;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 8px 0 8px 22px;
    }
}

/* ========================================
   CLIENTS MARQUEE SECTION
   ======================================== */

.clients-section {
    padding: 60px 0;
    background: #0f1941;
    overflow: hidden;
}

.clients-section .section-header h2 {
    color: #ffffff;
}

.clients-section .section-header .text-golden {
    color: #d4af37;
}

.clients-section .title-underline {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
}

.clients-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.clients-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.clients-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeRTL 40s linear infinite;
    align-items: center;
}

.clients-marquee-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(62, 120, 173, 0.15);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes marqueeRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Clients Marquee */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-marquee-wrapper {
        padding: 30px 0;
    }

    .clients-marquee-track {
        gap: 40px;
        animation-duration: 30s;
    }
    
    .client-logo-item {
        width: 150px;
        height: 90px;
    }
    
    .client-logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 50px 0;
    }

    .clients-marquee-wrapper {
        padding: 25px 0;
    }

    .clients-marquee-track {
        gap: 30px;
        animation-duration: 25s;
    }
    
    .client-logo-item {
        width: 130px;
        height: 80px;
    }
    
    .client-logo-item img {
        max-height: 50px;
    }
}

/* ========================================
   TEAM SECTION (Founders + Team Members)
   ======================================== */

.team-section {
    background: #ffffff;
}

/* Founders Subsection */
.founders-subsection {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3e78ad 0%, #1e3a8a 100%);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(62, 120, 173, 0.15);
}

.founder-card:nth-child(even) {
    flex-direction: row-reverse;
}

.founder-image-wrapper {
    flex-shrink: 0;
    width: 280px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #3e78ad;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.founder-image {
    width: 100%;
    height: 115%;
    object-fit: contain;
    object-position: center top;
    background-color: #f8fafc;
    transition: transform 0.4s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-content {
    flex: 1;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-position {
    display: inline-block;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 20px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077b5;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-icon:hover {
    background: #005885;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.linkedin-icon i {
    font-size: 20px;
}

/* Team Members Subsection */
.team-subsection {
    padding: 80px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    position: relative;
    width: 100%;
    height: 420px;
    perspective: 1000px;
    cursor: pointer;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-member-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-card-front {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-card-back {
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    transform: rotateY(180deg);
    padding: 20px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.team-member-image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image {
    transform: scale(1.05);
}

.team-member-info {
    padding: 18px 15px;
    background: #ffffff;
    text-align: center;
}

.team-member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.team-member-position {
    font-size: 0.85rem;
    color: #3e78ad;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

/* Back Side */
.team-card-back h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    padding: 0 2px;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.team-card-back .position-back {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 12px;
    padding: 0 2px;
    color: #d4af37;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.team-card-back .bio-back {
    font-size: 0.72rem;
    line-height: 1.4;
    opacity: 0.95;
    margin-bottom: 12px;
    overflow-y: auto;
    max-height: 240px;
    padding-right: 8px;
    padding-left: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
    flex-grow: 1;
}

.team-card-back .bio-back::-webkit-scrollbar {
    width: 3px;
}

.team-card-back .bio-back::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.team-card-back .bio-back::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.team-card-back .specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.specialty-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    line-height: 1.2;
}

/* Flip Indicator */
.flip-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(62, 120, 173, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.team-member-card:hover .flip-indicator {
    background: rgba(62, 120, 173, 1);
    transform: scale(1.1);
}

/* Responsive Team Section */
@media (max-width: 991px) {
    .founders-subsection,
    .team-subsection {
        padding: 60px 0;
    }

    .founder-card {
        flex-direction: column !important;
        text-align: center;
        padding: 25px;
    }

    .founder-image-wrapper {
        width: 220px;
        height: 260px;
    }

    .founder-name {
        justify-content: center;
        font-size: 1.5rem;
    }

    .founder-bio {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .team-member-card {
        height: 400px;
    }

    .team-member-image-wrapper {
        height: 240px;
    }

    .team-member-info {
        padding: 15px 12px;
    }

    .team-member-name {
        font-size: 1rem;
    }

    .team-member-position {
        font-size: 0.8rem;
    }

    .team-card-back {
        padding: 18px 15px 15px 15px;
    }

    .team-card-back h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .team-card-back .position-back {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .team-card-back .bio-back {
        font-size: 0.68rem;
        max-height: 220px;
        padding-right: 5px;
        line-height: 1.35;
    }

    .specialty-tag {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

@media (max-width: 576px) {
    .founders-subsection,
    .team-subsection {
        padding: 50px 0;
    }

    .founder-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .founder-image-wrapper {
        width: 180px;
        height: 220px;
    }

    .founder-name {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }

    .founder-bio {
        font-size: 0.95rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member-card {
        height: 370px;
        max-width: 320px;
        margin: 0 auto;
    }

    .team-member-image-wrapper {
        height: 220px;
    }

    .team-member-info {
        padding: 12px 10px;
    }

    .team-member-name {
        font-size: 0.95rem;
    }

    .team-member-position {
        font-size: 0.75rem;
    }

    .team-card-back {
        padding: 15px 12px 12px 12px;
    }

    .team-card-back h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .team-card-back .position-back {
        font-size: 0.68rem;
        margin-bottom: 8px;
    }

    .team-card-back .bio-back {
        font-size: 0.66rem;
        max-height: 200px;
        line-height: 1.3;
        padding-right: 4px;
    }

    .specialty-tag {
        font-size: 0.58rem;
        padding: 3px 5px;
    }

    .flip-indicator {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* ========================================
   TESTIMONIALS SECTION (Video Marquee)
   ======================================== */

.testimonials-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    background: #0f1941;
}

.testimonials-bg-video {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    animation: zoomInOut 20s ease-in-out infinite;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 65, 0.85);
    z-index: 2;
}

.testimonials-content {
    position: relative;
    z-index: 3;
}

.testimonials-section .section-header h2 {
    color: #ffffff;
}

.testimonials-section .section-header .text-golden {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .title-underline {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Video Testimonials Marquee Container */
.video-testimonials-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.video-testimonials-scroll {
    display: flex;
    gap: 30px;
    animation: videoMarqueeScroll 60s linear infinite;
    width: max-content;
}

.video-testimonials-scroll:hover {
    animation-play-state: paused;
}

.video-testimonial-item {
    flex-shrink: 0;
    width: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.video-testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000000;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-testimonial-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 15px 20px 8px;
}

.video-testimonial-item p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0 20px 20px;
    line-height: 1.5;
}

@keyframes videoMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
        min-height: 500px;
    }

    .video-testimonials-container {
        margin-top: 40px;
    }

    .video-testimonial-item {
        width: 350px;
    }

    .video-testimonials-scroll {
        gap: 25px;
        animation-duration: 50s;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 0;
        min-height: 450px;
    }

    .video-testimonials-container {
        margin-top: 30px;
    }

    .video-testimonial-item {
        width: 300px;
    }

    .video-testimonials-scroll {
        gap: 20px;
        animation-duration: 40s;
    }

    .video-testimonial-item h5 {
        font-size: 1rem;
        margin: 12px 15px 6px;
    }

    .video-testimonial-item p {
        font-size: 0.85rem;
        margin: 0 15px 15px;
    }
}

/* ========================================
   CAREERS SECTION
   ======================================== */

.careers-section {
    padding: 60px 0;
    background: #f8fafc;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.career-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e4c1 100%);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 120, 173, 0.15);
}

.career-card-header {
    padding: 25px 25px 20px;
}

.career-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.career-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    flex: 1;
}

.career-type-badge {
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 10px;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    font-size: 0.9rem;
}

.career-meta-item i {
    color: #3e78ad;
    font-size: 1rem;
}

.career-card-body {
    padding: 0 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.career-buttons {
    display: flex;
    gap: 12px;
    padding: 20px 25px;
    background: transparent;
    margin-top: auto;
}

.btn-view-details {
    flex: 1;
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 120, 173, 0.3);
}

.btn-apply-now {
    flex: 1;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    color: #1a202c;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Job Modal */
.job-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.job-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.job-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.job-modal-header {
    background: linear-gradient(135deg, #3e78ad 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-modal-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.job-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.job-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.job-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.job-modal-section {
    margin-bottom: 30px;
}

.job-modal-section:last-child {
    margin-bottom: 0;
}

.job-modal-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.job-modal-section p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

.job-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-modal-section ul li {
    padding: 8px 0 8px 25px;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
}

.job-modal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

.job-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirement-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3e78ad;
}

.requirement-item strong {
    color: #1a202c;
    min-width: 120px;
    font-weight: 600;
}

.requirement-item span {
    color: #4a5568;
    flex: 1;
}

.modal-apply-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    color: #1a202c;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.modal-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BROCHURE DOWNLOAD MODAL
   ======================================== */

.brochure-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.brochure-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brochure-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.brochure-modal-header {
    background: linear-gradient(135deg, #0f1941 0%, #1a2859 100%);
    color: #ffffff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brochure-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.brochure-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.brochure-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.brochure-modal-body {
    padding: 30px;
}

.brochure-form-group {
    margin-bottom: 20px;
}

.brochure-form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.brochure-form-group .required {
    color: #dc2626;
}

.brochure-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.brochure-form-group input:focus {
    outline: none;
    border-color: #0f1941;
    box-shadow: 0 0 0 3px rgba(15, 25, 65, 0.1);
}

.brochure-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    color: #1a202c;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brochure-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 576px) {
    .brochure-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .brochure-modal-header {
        padding: 20px;
    }
    
    .brochure-modal-body {
        padding: 20px;
    }
}

/* ========================================
   PITCH SUBMISSION MODAL
   ======================================== */

.pitch-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.pitch-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pitch-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

.pitch-modal-header {
    background: linear-gradient(135deg, #0f1941 0%, #1a2859 100%);
    color: #ffffff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pitch-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pitch-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.pitch-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pitch-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.pitch-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pitch-form-group {
    margin-bottom: 20px;
}

.pitch-form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pitch-form-group .required {
    color: #dc2626;
}

.pitch-form-group input,
.pitch-form-group select,
.pitch-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pitch-form-group input:focus,
.pitch-form-group select:focus,
.pitch-form-group textarea:focus {
    outline: none;
    border-color: #0f1941;
    box-shadow: 0 0 0 3px rgba(15, 25, 65, 0.1);
}

.pitch-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #d4af37;
    border-radius: 8px;
    background: #fefdf8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #fff8dc;
    border-color: #0f1941;
}

.file-upload-label i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.file-upload-label span {
    color: #6b7280;
    font-size: 0.9rem;
}

.file-name {
    margin-top: 10px;
    color: #0f1941;
    font-weight: 600;
    font-size: 0.9rem;
}

.pitch-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    color: #1a202c;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pitch-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .pitch-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pitch-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .pitch-modal-header {
        padding: 20px;
    }
    
    .pitch-modal-body {
        padding: 20px;
    }
}

/* Responsive Careers */
@media (max-width: 991px) {
    .careers-section {
        padding: 60px 0;
    }

    .careers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .career-title {
        font-size: 1.2rem;
    }

    .career-card-header {
        padding: 20px 20px 18px;
    }

    .career-card-body {
        padding: 0 20px 18px;
    }

    .career-buttons {
        padding: 18px 20px;
    }

    .job-modal-content {
        max-width: 90%;
    }

    .job-modal-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .careers-section {
        padding: 50px 0;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-card-header {
        padding: 18px 18px 15px;
    }

    .career-card-body {
        padding: 0 18px 15px;
    }

    .career-title-row {
        flex-direction: column;
        gap: 10px;
    }

    .career-type-badge {
        margin-left: 0;
        align-self: flex-start;
    }

    .career-buttons {
        flex-direction: column;
        padding: 15px 18px;
    }

    .job-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .job-modal-header {
        padding: 20px;
    }

    .job-modal-header h3 {
        font-size: 1.2rem;
    }

    .job-modal-body {
        padding: 20px;
    }

    .requirement-item {
        flex-direction: column;
        gap: 5px;
    }

    .requirement-item strong {
        min-width: auto;
    }
}

/* ========================================
   BROCHURE/DOWNLOADS SECTION
   ======================================== */

.brochure-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: #0f1941;
}

.brochure-bg-video {
    display: none;
}

.brochure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 65, 0.85);
    z-index: 2;
}

.brochure-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brochure-text {
    flex: 1;
}

.brochure-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brochure-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.brochure-action {
    flex-shrink: 0;
}

.download-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    color: #1a202c;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 100%);
}

.download-btn i {
    font-size: 1.1rem;
    animation: downloadPulse 2s ease-in-out infinite;
}

@keyframes downloadPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Responsive Brochure Section */
@media (max-width: 991px) {
    .brochure-section {
        padding: 40px 0;
        min-height: 175px;
    }

    .brochure-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .brochure-title {
        font-size: 1.5rem;
    }

    .brochure-description {
        font-size: 0.95rem;
    }

    .download-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .brochure-section {
        padding: 30px 0;
        min-height: 150px;
    }

    .brochure-content-wrapper {
        gap: 20px;
    }

    .brochure-title {
        font-size: 1.3rem;
    }

    .brochure-title br {
        display: none;
    }

    .brochure-description {
        font-size: 0.9rem;
    }

    .brochure-description br {
        display: none;
    }

    .download-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Utility Classes */
.text-golden {
    color: var(--golden-primary);
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-golden);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Achievement Items */
.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 120, 173, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(62, 120, 173, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--golden-primary);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    color: var(--golden-primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Team Details Card */
.team-details-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.team-details-card h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-details-card .position {
    color: var(--golden-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-details-card .bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Team Member Cards */
.team-member-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.team-member-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member-card:hover img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95), transparent);
    padding: 20px;
    transform: translateY(60%);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
    transform: translateY(0);
}

.team-member-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.team-member-overlay p {
    color: var(--golden-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.team-member-card.active {
    box-shadow: 0 0 0 3px var(--golden-primary);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--golden-primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.career-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.career-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.career-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.career-badge {
    display: inline-block;
    background: var(--gradient-golden);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.career-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.career-card:hover .career-arrow {
    transform: translateY(-50%) translateX(10px);
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.job-description h4 {
    color: var(--primary-blue);
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.job-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.job-description ul {
    margin: 15px 0;
    padding-left: 25px;
}

.job-description ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.apply-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Button Styles */
.btn-primary-large {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-primary-large i {
    margin-right: 10px;
}

.btn-light-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light-outline:hover {
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
}

.btn-light-outline i {
    margin-right: 8px;
}

/* Brochure Preview */
.brochure-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* LinkedIn Link Styles */
.linkedin-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 15px;
}

.linkedin-link:hover {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

.linkedin-link i {
    margin-right: 8px;
}

/* Transaction and Client Marquee - Already exists, ensure consistency */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .team-details-card {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .team-member-card img {
        height: 240px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-label {
        font-size: 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .team-member-card img {
        height: 200px;
    }
}

/* ========================================
   WHATSAPP STICKY BUTTON
   ======================================== */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-sticky-btn i {
    font-size: 32px;
    color: #ffffff;
}

.whatsapp-sticky-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
    text-decoration: none;
}

.whatsapp-sticky-btn:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .whatsapp-sticky-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-sticky-btn i {
        font-size: 26px;
    }
}

/* ========================================
   MOBILE FIX: Services & Achievements Always Visible
   ======================================== */
@media (max-width: 768px) {
    /* Services cards fix */
    .service-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .service-details {
        max-height: none !important;
        padding: 20px !important;
        overflow: visible !important;
    }
    
    .service-features li {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    /* Achievement cards fix */
    .achievement-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* ========================================
   MOBILE FIX: Brochure Modal Responsive
   ======================================== */
@media (max-width: 480px) {
    .brochure-modal.active {
        padding: 10px;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .brochure-modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .brochure-modal-header {
        padding: 18px 15px;
    }
    
    .brochure-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .brochure-modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .brochure-modal-body {
        padding: 15px;
    }
    
    .brochure-form-group {
        margin-bottom: 15px;
    }
    
    .brochure-form-group label {
        font-size: 0.9rem;
    }
    
    .brochure-form-group input {
        padding: 10px 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .brochure-submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}