
        /* ============================================
           GLOBAL RESET & BASE STYLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #F4F4F9;
        }
        
        /* ============================================
           HEADER COMPONENT - Main Navigation Bar
           ============================================ */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: linear-gradient(135deg, #0A2342 0%, #0d2f52 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Enhanced shadow on scroll (add via JS class) */
        .header.scrolled {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
        }
        
        /* ============================================
           NAVIGATION CONTAINER - Flex Layout
           ============================================ */
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* ============================================
           LOGO/BRAND - Left Side
           ============================================ */
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #F9A826;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: #F9A826;
            transition: width 0.3s ease;
        }
        
        .logo:hover::after {
            width: 100%;
        }
        
        .logo:hover {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(249, 168, 38, 0.3);
        }
        
        /* ============================================
           NAVIGATION LINKS - Desktop Menu
           ============================================ */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-link {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }
        
        /* Elegant underline animation */
        
        
        .nav-link:hover {
            color: #F9A826;
            text-decoration: underline 3px;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            
            
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        /* Active/current page indicator */
        .nav-link.active {
            color: #F9A826;
            text-decoration: underline  4px;
        }
        
        .nav-link.active::before {
            width: 100%;
            
        }
        .nav-links a.active {
            color: #F9A826;
            font-weight: 600;
        }
        
        .nav-links a.active::before {
            width: 100%;
        }
        
        /* ============================================
           CTA BUTTON - "Book Me" Primary Action
           ============================================ */
        .cta-button {
            background: #F9A826;
            color: #0A2342;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        /* Hover effect with gradient shift */
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background: #ffb84d;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249, 168, 38, 0.5);
        }
        
        .cta-button:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(249, 168, 38, 0.4);
        }
        
        /* ============================================
           MOBILE MENU TOGGLE - Hamburger Icon
           ============================================ */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #F9A826;
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Hamburger animation when active */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* ============================================
           RESPONSIVE DESIGN - Tablet & Mobile
           ============================================ */
        
        /* Tablet Layout - 992px and below */
        @media screen and (max-width: 992px) {
            .nav-container {
                padding: 1rem 2rem;
            }
            
            .nav-menu {
                gap: 1.8rem;
            }
            
            .logo {
                font-size: 1.75rem;
            }
        }
        
        /* Mobile Layout - 768px and below */
        @media screen and (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            /* Mobile menu dropdown */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 350px;
                height: 100vh;
                background: linear-gradient(180deg, #0A2342 0%, #0d2f52 100%);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
                padding: 2rem;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 1.2rem;
                padding: 0.75rem 0;
            }
            
            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
        }
        
        /* Small Mobile - 480px and below */
        @media screen and (max-width: 480px) {
            .nav-container {
                padding: 0.85rem 1.25rem;
            }
            
            .logo {
                font-size: 1.35rem;
            }
            
            .nav-menu {
                width: 85%;
            }
            
            .menu-toggle span {
                width: 25px;
            }
        }
        
        /* ============================================
           ACCESSIBILITY ENHANCEMENTS
           ============================================ */
        
        /* Focus visible for keyboard navigation */
        .nav-link:focus-visible,
        .cta-button:focus-visible,
        .logo:focus-visible {
            outline: 3px solid #F9A826;
            outline-offset: 4px;
            border-radius: 4px;
        }
        
        /* Skip to main content link for screen readers */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #F9A826;
            color: #0A2342;
            padding: 8px;
            text-decoration: none;
            z-index: 2000;
            font-weight: 700;
        }
        
        .skip-link:focus {
            top: 0;
        }
        
        /* Reduced motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }











        #hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0A2342 0%, #0d2f52 50%, #0A2342 100%);
            display: flex;
            align-items: center;
            padding: 6rem 2rem 4rem;
            overflow: hidden;
        }
        
        /* Animated background particles effect */
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(249, 168, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 168, 38, 0.08) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.05); }
        }
        
        /* Decorative geometric shapes */
        .hero-decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            pointer-events: none;
        }
        
        .decoration-1 {
            width: 400px;
            height: 400px;
            background: #F9A826;
            top: -100px;
            right: -100px;
            animation: rotate 30s linear infinite;
        }
        
        .decoration-2 {
            width: 300px;
            height: 300px;
            background: #F9A826;
            bottom: -80px;
            left: -80px;
            animation: rotate 25s linear infinite reverse;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* ============================================
           HERO GRID LAYOUT - Two Columns
           ============================================ */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* ============================================
           HERO CONTENT - Left Column (Text)
           ============================================ */
        .hero-content {
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Subheading/Tagline */
        .hero-tagline {
            display: inline-block;
            color: #F9A826;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 3rem;
            animation: slideInLeft 0.8s ease-out 0.5s backwards;
        }
        
        .hero-tagline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 3px;
            background: #F9A826;
            animation: expandWidth 0.8s ease-out 0.6s backwards;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 40px;
            }
        }
        
        /* Main Headline */
        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.75rem;
            font-weight: 800;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            position: relative;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }
        
        /* Highlight word with gold accent */
        .highlight {
            color: #F9A826;
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(249, 168, 38, 0.2);
            z-index: -1;
            animation: highlightExpand 0.8s ease-out 1.2s backwards;
        }
        
        @keyframes highlightExpand {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        
        /* Description Paragraph */
        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            max-width: 560px;
            animation: fadeInUp 1s ease-out 0.9s backwards;
        }
        
        /* ============================================
           CTA BUTTONS - Action Buttons Container
           ============================================ */
        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 1.2s backwards;
        }
        
        /* Primary Button Styling */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        /* Primary CTA - "Book Me" */
        .btn-primary {
            background: #F9A826;
            color: #0A2342;
            box-shadow: 0 8px 25px rgba(249, 168, 38, 0.4);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 168, 38, 0.6);
            background: #ffb84d;
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        /* Secondary CTA - "Learn More" */
        .btn-secondary {
            background: transparent;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
        }
        
        .btn-secondary:hover {
            background: #FFFFFF;
            color: #0A2342;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:active {
            transform: translateY(-1px);
        }
        
        /* Button text positioning */
        .btn span {
            position: relative;
            z-index: 1;
        }
        
        /* ============================================
           HERO IMAGE - Right Column (Photo Container)
           ============================================ */
        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: zoomIn 1.2s ease-out 0.8s forwards;
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Image container with decorative frame */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(249, 168, 38, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0d2f52 0%, #0A2342 100%);
}

/* Smooth hover lift effect */
.hero-image:hover {
  transform: translateY(-10px);
}

/* Decorative frame accent */
.hero-image::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #F9A826, #ffb84d, #F9A826);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image:hover::before {
  opacity: 1;
}

/* Make image fit nicely */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills the box nicely */
  object-position: center top;  /* focuses on face/upper body */
  display: block;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

/* Optional: slight zoom-in on hover */
.hero-image:hover img {
  transform: scale(1.03);
}

        
        /* Placeholder text inside image container */
        .hero-image::after {
            
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(249, 168, 38, 0.3);
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            width: 80%;
        }
        
        /* Floating badge/accent element */
        .hero-badge {
            position: absolute;
            bottom: 30px;
            left: -20px;
            background: #F9A826;
            color: #0A2342;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 10px 30px rgba(249, 168, 38, 0.4);
            animation: float 3s ease-in-out infinite;
            z-index: 2;
        }
        
        /* Decorative dots pattern */
        .dots-pattern {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(circle, #F9A826 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.2;
            z-index: -1;
        }
        
        /* ============================================
           SCROLL INDICATOR - Animated Down Arrow
           ============================================ */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 1.5s backwards;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .scroll-indicator:hover {
            color: #F9A826;
        }
        
        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            position: relative;
            transition: border-color 0.3s ease;
        }
        
        .scroll-indicator:hover .scroll-arrow {
            border-color: #F9A826;
        }
        
        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            animation: scrollDown 2s ease-in-out infinite;
        }
        
        @keyframes scrollDown {
            0%, 100% {
                transform: translate(-50%, 0);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, 15px);
                opacity: 0;
            }
        }
        
        /* ============================================
           RESPONSIVE DESIGN - Tablet & Mobile
           ============================================ */
        
        /* Tablet Layout - 1024px and below */
        @media screen and (max-width: 1024px) {
            .hero-container {
                gap: 3rem;
            }
            
            .hero-title {
                font-size: 3.2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-image {
                max-width: 400px;
            }
        }
        
        /* Tablet Portrait - 768px and below */
        @media screen and (max-width: 768px) {
            #hero {
                min-height: auto;
                padding: 5rem 1.5rem 3rem;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            /* Image moves to top on mobile */
            .hero-image-wrapper {
                order: -1;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-tagline {
                padding-left: 0;
            }
            
            .hero-tagline::before {
                display: none;
            }
            
            .hero-description {
                font-size: 1.05rem;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-image {
                max-width: 350px;
            }
            
            .hero-badge {
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
            }
            
            .scroll-indicator {
                bottom: 2rem;
            }
            
            .decoration-1,
            .decoration-2 {
                display: none;
            }
        }
        
        /* Mobile - 480px and below */
        @media screen and (max-width: 480px) {
            #hero {
                padding: 4rem 1.25rem 2.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero-tagline {
                font-size: 0.8rem;
                letter-spacing: 2px;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }
            
            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.9rem;
                width: 100%;
                text-align: center;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .hero-image {
                max-width: 280px;
            }
            
            .hero-badge {
                padding: 0.75rem 1.25rem;
                font-size: 0.8rem;
            }
            
            .dots-pattern {
                width: 100px;
                height: 100px;
            }
        }
        
        /* ============================================
           ACCESSIBILITY & PERFORMANCE
           ============================================ */
        
        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Focus states for keyboard navigation */
        .btn:focus-visible {
            outline: 3px solid #F9A826;
            outline-offset: 4px;
        }
        
        .scroll-indicator:focus-visible {
            outline: 2px solid #F9A826;
            outline-offset: 6px;
        }










        /* ============================================
           ABOUT SECTION - Main Container
           ============================================ */
        #about {
            position: relative;
            padding: 7rem 2rem;
            background: linear-gradient(180deg, #F4F4F9 0%, #FFFFFF 100%);
            overflow: hidden;
        }
        
        /* Decorative background elements */
        #about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 168, 38, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        
        /* Container for all content */
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* ============================================
           SECTION HEADER - Title & Subtitle
           ============================================ */
        .about-header {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .about-subtitle {
            display: inline-block;
            color: #F9A826;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .about-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #F9A826;
        }
        
        .about-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #0A2342;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .about-tagline {
            font-size: 1.3rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Gold accent word */
        .accent-text {
            color: #F9A826;
            font-weight: 700;
        }
        
        /* ============================================
           MAIN CONTENT - Two Column Layout
           ============================================ */
        .about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 6rem;
        }
        
        /* ============================================
           LEFT COLUMN - Biography Text
           ============================================ */
        .about-text {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        .about-text h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #0A2342;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .about-text p:last-of-type {
            margin-bottom: 2.5rem;
        }
        
        /* Highlight important keywords */
        .keyword {
            color: #0A2342;
            font-weight: 700;
        }
        
        /* Signature-style element */
        .about-signature {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(249, 168, 38, 0.2);
        }
        
        .signature-line {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #0A2342;
        }
        
        .signature-role {
            font-size: 0.95rem;
            color: #F9A826;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* ============================================
           RIGHT COLUMN - Image Placeholder
           ============================================ */
        .about-image-wrapper {
            position: relative;
            opacity: 0;
            animation: slideInRight 1s ease-out 0.6s forwards;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .about-image {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0A2342 0%, #0d2f52 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(10, 35, 66, 0.3),
    0 0 0 10px rgba(249, 168, 38, 0.1);
  margin-left: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.about-image:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(10, 35, 66, 0.4),
    0 0 0 10px rgba(249, 168, 38, 0.2);
}

/* Ensure the image fits perfectly */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills the box nicely */
  object-position: center;   /* centers the focus */
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

/* Optional slight zoom on hover */
.about-image:hover img {
  transform: scale(1.03);
}

/* Remove placeholder text since image is now loaded */
.about-image::after {
  content: '';
}

/* Decorative frame accent (subtle golden glow box behind) */
.image-decoration {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #F9A826 0%, #ffb84d 100%);
  border-radius: 20px;
  opacity: 0.15;
  z-index: -1;
}

        
        /* ============================================
           ACHIEVEMENTS/STATS SECTION
           ============================================ */
        .achievements-section {
            margin-bottom: 6rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }
        
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        /* Individual stat card */
        .stat-card {
            background: #FFFFFF;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        /* Hover effect with lift and glow */
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(10, 35, 66, 0.15);
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #F9A826, #ffb84d);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        
        /* Icon circle */
        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(249, 168, 38, 0.1), rgba(249, 168, 38, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #F9A826;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(249, 168, 38, 0.2), rgba(249, 168, 38, 0.3));
        }
        
        /* Counter number with animation */
        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: #0A2342;
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
            line-height: 1.4;
        }
        
        /* ============================================
           MISSION STATEMENT BLOCK
           ============================================ */
        .mission-block {
            background: linear-gradient(135deg, #0A2342 0%, #0d2f52 100%);
            padding: 4rem 3rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1s forwards;
            box-shadow: 0 20px 60px rgba(10, 35, 66, 0.3);
        }
        
        /* Decorative quote marks */
        .mission-block::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 8rem;
            font-family: Georgia, serif;
            color: rgba(249, 168, 38, 0.15);
            line-height: 1;
        }
        
        .mission-block::after {
            content: '"';
            position: absolute;
            bottom: 20px;
            right: 40px;
            font-size: 8rem;
            font-family: Georgia, serif;
            color: rgba(249, 168, 38, 0.15);
            line-height: 1;
        }
        
        .mission-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #F9A826;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
        }
        
        .mission-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #FFFFFF;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .mission-highlight {
            color: #F9A826;
            font-weight: 700;
        }
        
        /* ============================================
           CTA BUTTON SECTION
           ============================================ */
        .about-cta {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1.2s forwards;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #F9A826;
            color: #0A2342;
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(249, 168, 38, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        /* Ripple effect on hover */
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }
        
        .cta-button:hover {
            background: #ffb84d;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(249, 168, 38, 0.6);
        }
        
        .cta-button:active {
            transform: translateY(-2px);
        }
        
        .cta-button span {
            position: relative;
            z-index: 1;
        }
        
        /* ============================================
           RESPONSIVE DESIGN - Tablet & Mobile
           ============================================ */
        
        /* Tablet - 1024px and below */
        @media screen and (max-width: 1024px) {
            .about-title {
                font-size: 3rem;
            }
            
            .about-main {
                gap: 4rem;
            }
            
            .about-text h3 {
                font-size: 1.75rem;
            }
        }
        
        /* Tablet Portrait - 768px and below */
        @media screen and (max-width: 768px) {
            #about {
                padding: 5rem 1.5rem;
            }
            
            .about-header {
                margin-bottom: 4rem;
            }
            
            .about-title {
                font-size: 2.5rem;
            }
            
            .about-tagline {
                font-size: 1.1rem;
            }
            
            .about-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-image-wrapper {
                order: -1;
            }
            
            .about-image {
                margin: 0 auto;
                max-width: 400px;
            }
            
            .about-text h3 {
                font-size: 1.6rem;
            }
            
            .about-text p {
                font-size: 1.05rem;
            }
            
            .achievements-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }
            
            .mission-block {
                padding: 3rem 2rem;
            }
            
            .mission-text {
                font-size: 1.5rem;
            }
            
            .mission-block::before,
            .mission-block::after {
                font-size: 5rem;
            }
        }
        
        /* Mobile - 480px and below */
        @media screen and (max-width: 480px) {
            #about {
                padding: 4rem 1.25rem;
            }
            
            .about-header {
                margin-bottom: 3rem;
            }
            
            .about-subtitle {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }
            
            .about-title {
                font-size: 2rem;
            }
            
            .about-tagline {
                font-size: 1rem;
            }
            
            .about-text h3 {
                font-size: 1.4rem;
            }
            
            .about-text p {
                font-size: 0.95rem;
            }
            
            .about-image {
                max-width: 300px;
            }
            
            .achievements-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-card {
                padding: 2rem 1.5rem;
            }
            
            .mission-block {
                padding: 2.5rem 1.5rem;
            }
            
            .mission-text {
                font-size: 1.2rem;
            }
            
            .mission-block::before {
                left: 15px;
                font-size: 4rem;
            }
            
            .mission-block::after {
                right: 15px;
                font-size: 4rem;
            }
            
            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 0.95rem;
                width: 100%;
            }
        }
        
        /* ============================================
           ACCESSIBILITY & PERFORMANCE
           ============================================ */
        
        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Focus states for keyboard navigation */
        .cta-button:focus-visible {
            outline: 3px solid #F9A826;
            outline-offset: 4px;
        }





       .services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.services-header .section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 15px;
}

.services-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: #d4af37;
    transition: fill 0.4s ease;
}

.service-card:hover .service-icon svg {
    fill: #0a1628;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #d4af37;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a1628;
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid #0a1628;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-btn:hover {
    border-color: #d4af37;
    color: #0a1628;
}

.service-btn:hover::before {
    left: 0;
}

.service-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.service-btn:hover svg {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIXED: Match the class name from JavaScript */
.service-card.olawale-service-visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Also keep the old class for backward compatibility */
.service-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1).olawale-service-visible,
.service-card:nth-child(1).animate { animation-delay: 0.1s; }

.service-card:nth-child(2).olawale-service-visible,
.service-card:nth-child(2).animate { animation-delay: 0.2s; }

.service-card:nth-child(3).olawale-service-visible,
.service-card:nth-child(3).animate { animation-delay: 0.3s; }

.service-card:nth-child(4).olawale-service-visible,
.service-card:nth-child(4).animate { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 20px;
    }

    .services-header h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 28px;
    }

    .services-header .section-label {
        font-size: 12px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }
}




          .portfolio-section {
            padding: 110px 20px 90px;
            background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 183, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .portfolio-section::after {
            content: '';
            position: absolute;
            bottom: -15%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(11, 19, 43, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .portfolio-container {
            max-width: 1240px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .portfolio-header {
            text-align: center;
            margin-bottom: 75px;
            opacity: 0;
            transform: translateY(40px);
            animation: portfolioFadeInUp 0.9s ease forwards;
        }

        .portfolio-header .section-badge {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #f5b700;
            background: linear-gradient(135deg, rgba(245, 183, 0, 0.1) 0%, rgba(245, 183, 0, 0.05) 100%);
            padding: 10px 28px;
            border-radius: 50px;
            border: 1px solid rgba(245, 183, 0, 0.3);
            margin-bottom: 22px;
            transition: all 0.3s ease;
        }

        .portfolio-header .section-badge:hover {
            background: linear-gradient(135deg, rgba(245, 183, 0, 0.15) 0%, rgba(245, 183, 0, 0.08) 100%);
            border-color: rgba(245, 183, 0, 0.5);
        }

        .portfolio-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: #0b132b;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .portfolio-header h2 .highlight {
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .portfolio-header p {
            font-size: 19px;
            color: #5a6c7d;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.75;
            font-weight: 400;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .portfolio-item {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(11, 19, 43, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            border: 1px solid rgba(11, 19, 43, 0.05);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(180deg, rgba(245, 183, 0, 0.9) 0%, rgba(245, 183, 0, 0) 100%);
            transition: height 0.5s ease;
            z-index: 1;
            opacity: 0;
        }

        .portfolio-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(245, 183, 0, 0.25);
            border-color: rgba(245, 183, 0, 0.4);
        }

        .portfolio-item:hover::before {
            height: 100%;
            opacity: 1;
        }

        .portfolio-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #0b132b 0%, #1a2847 100%);
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.9;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.12);
            opacity: 1;
        }

        .portfolio-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(245, 183, 0, 0.95);
            color: #0b132b;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 50px;
            z-index: 2;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(245, 183, 0, 0.3);
        }

        .portfolio-content {
            padding: 35px 30px 40px;
            position: relative;
            z-index: 2;
        }

        .portfolio-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #0b132b;
            margin-bottom: 14px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .portfolio-item:hover .portfolio-content h3 {
            color: #f5b700;
        }

        .portfolio-content p {
            font-size: 15.5px;
            color: #5a6c7d;
            line-height: 1.7;
            margin-bottom: 25px;
            min-height: 52px;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #0b132b;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .portfolio-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f5b700 0%, #ffcc33 100%);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover .portfolio-link {
            color: #f5b700;
            transform: translateX(5px);
        }

        .portfolio-item:hover .portfolio-link::after {
            width: calc(100% - 26px);
        }

        .portfolio-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-link svg {
            transform: translateX(5px);
        }

        /* Hidden items on mobile */
        .portfolio-item.portfolio-hidden-mobile {
            display: block;
        }

        @media (max-width: 768px) {
            .portfolio-item.portfolio-hidden-mobile {
                display: none;
            }

            .portfolio-item.portfolio-hidden-mobile.portfolio-show-mobile {
                display: block;
            }
            .hero-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }



        
        /* Load More Button */
        .portfolio-load-more {
            text-align: center;
            margin-top: 50px;
            display: none;
        }

        @media (max-width: 768px) {
            .portfolio-load-more {
                display: block;
            }

            .portfolio-load-more.portfolio-hidden {
                display: none;
            }
        }

        .portfolio-load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #0b132b;
            background: #ffffff;
            padding: 16px 40px;
            border: 2px solid #f5b700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(245, 183, 0, 0.2);
        }

        .portfolio-load-more-btn:hover {
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 183, 0, 0.4);
        }

        .portfolio-load-more-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .portfolio-load-more-btn:hover svg {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .portfolio-cta {
            text-align: center;
            margin-top: 75px;
            opacity: 0;
            transform: translateY(30px);
            animation: portfolioFadeInUp 1s ease 0.3s forwards;
        }

        .portfolio-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #0b132b;
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(245, 183, 0, 0.35);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .portfolio-cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .portfolio-cta-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 45px rgba(245, 183, 0, 0.5);
        }

        .portfolio-cta-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .portfolio-cta-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .portfolio-cta-btn:hover svg {
            transform: translateX(6px);
        }

        .portfolio-cta-btn span {
            position: relative;
            z-index: 1;
        }

        /* Modal Styles */
        .portfolio-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 19, 43, 0.95);
            z-index: 9999;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-modal.portfolio-modal-active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .portfolio-modal-content {
            background: #ffffff;
            border-radius: 20px;
            max-width: 800px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            padding: 50px 45px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            transform: scale(0.9) translateY(30px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-modal.portfolio-modal-active .portfolio-modal-content {
            transform: scale(1) translateY(0);
        }

        .portfolio-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: #f5b700;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .portfolio-modal-close:hover {
            background: #0b132b;
            transform: rotate(90deg);
        }

        .portfolio-modal-close svg {
            width: 24px;
            height: 24px;
            fill: #0b132b;
            transition: fill 0.3s ease;
        }

        .portfolio-modal-close:hover svg {
            fill: #f5b700;
        }

        .portfolio-modal-image {
            width: 100%;
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .portfolio-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-modal-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            color: #0b132b;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .portfolio-modal h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #0b132b;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .portfolio-modal-description {
            font-size: 16px;
            color: #5a6c7d;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        /* Animations */
        @keyframes portfolioFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .portfolio-item.portfolio-animate {
            animation: portfolioFadeInUp 0.8s ease forwards;
        }

        .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
        .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
        .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
        .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
        .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
        .portfolio-item:nth-child(6) { animation-delay: 0.6s; }
        .portfolio-item:nth-child(7) { animation-delay: 0.7s; }
        .portfolio-item:nth-child(8) { animation-delay: 0.8s; }
        .portfolio-item:nth-child(9) { animation-delay: 0.9s; }
        .portfolio-item:nth-child(10) { animation-delay: 1s; }
        .portfolio-item:nth-child(11) { animation-delay: 1.1s; }
        .portfolio-item:nth-child(12) { animation-delay: 1.2s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .portfolio-section {
                padding: 90px 20px 70px;
            }

            .portfolio-header h2 {
                font-size: 44px;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }

            .portfolio-image {
                height: 260px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 70px 20px 60px;
            }

            .portfolio-header {
                margin-bottom: 55px;
            }

            .portfolio-header h2 {
                font-size: 36px;
            }

            .portfolio-header p {
                font-size: 17px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .portfolio-image {
                height: 240px;
            }

            .portfolio-content {
                padding: 30px 25px 35px;
            }

            .portfolio-content h3 {
                font-size: 22px;
            }

            .portfolio-cta {
                margin-top: 60px;
            }

            .portfolio-cta-btn {
                padding: 16px 38px;
                font-size: 15px;
            }

            .portfolio-modal-content {
                padding: 40px 30px;
            }

            .portfolio-modal-image {
                height: 250px;
            }

            .portfolio-modal h3 {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-section {
                padding: 60px 15px 50px;
            }

            .portfolio-header h2 {
                font-size: 30px;
            }

            .portfolio-header .section-badge {
                font-size: 11px;
                letter-spacing: 2px;
                padding: 8px 22px;
            }

            .portfolio-image {
                height: 220px;
            }

            .portfolio-content {
                padding: 25px 20px 30px;
            }

            .portfolio-content h3 {
                font-size: 20px;
            }

            .portfolio-content p {
                font-size: 15px;
                min-height: auto;
            }

            .portfolio-cta-btn {
                padding: 14px 32px;
                font-size: 14px;
            }

            .portfolio-modal-content {
                padding: 35px 25px;
            }

            .portfolio-modal-image {
                height: 200px;
            }

            .portfolio-modal h3 {
                font-size: 24px;
            }

            .portfolio-modal-description {
                font-size: 15px;
            }
        }


:root {
            --olawale-navy-primary: #0B132B;
            --olawale-gold-accent: #F5B700;
            --olawale-white-bg: #F9F9F9;
            --olawale-navy-light: #1C2541;
            --olawale-gold-dark: #D4A000;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--olawale-navy-primary);
            background-color: var(--olawale-white-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Hero Section */
        .olawale-about-hero-wrapper {
            background: linear-gradient(135deg, var(--olawale-navy-primary) 0%, var(--olawale-navy-light) 100%);
            color: var(--olawale-white-bg);
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .olawale-about-hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(245,183,0,0.05)"/></svg>') no-repeat center bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .olawale-about-hero-content-inner {
            position: relative;
            z-index: 1;
            max-width: 900px;
            animation: olawaleAboutFadeInUp 1s ease-out;
        }

        .olawale-about-hero-wrapper h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .olawale-about-hero-subtitle-text {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            line-height: 1.8;
            color: rgba(249, 249, 249, 0.9);
        }

        .olawale-about-gold-highlight {
            color: var(--olawale-gold-accent);
        }

        /* Story Section */
        .olawale-about-story-container {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .olawale-about-story-two-col-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .olawale-about-story-text-block h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            color: var(--olawale-navy-primary);
        }

        .olawale-about-story-text-block p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #4a4a4a;
            text-align: justify;
        }

        .olawale-about-story-photo-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(11, 19, 43, 0.2);
            animation: olawaleAboutFadeInRight 1s ease-out;
        }

        .olawale-about-story-photo-frame img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .olawale-about-inspirational-quote-card {
            background: linear-gradient(135deg, var(--olawale-gold-accent) 0%, var(--olawale-gold-dark) 100%);
            color: var(--olawale-navy-primary);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            position: relative;
            box-shadow: 0 10px 30px rgba(245, 183, 0, 0.3);
            animation: olawaleAboutFadeIn 1.5s ease-out;
        }

        .olawale-about-inspirational-quote-card::before {
            content: '"';
            font-size: 5rem;
            font-family: 'Poppins', serif;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }

        .olawale-about-inspirational-quote-card p {
            font-size: 1.4rem;
            font-weight: 600;
            font-style: italic;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Mission Vision Section */
        .olawale-about-mission-vision-block {
            background: var(--olawale-navy-primary);
            color: var(--olawale-white-bg);
            padding: 6rem 2rem;
        }

        .olawale-about-mission-vision-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .olawale-about-mission-vision-block h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 4rem;
        }

        .olawale-about-mv-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .olawale-about-mv-single-card {
            background: var(--olawale-navy-light);
            padding: 3rem 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .olawale-about-mv-single-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(245, 183, 0, 0.3);
            border-color: var(--olawale-gold-accent);
        }

        .olawale-about-mv-icon-display {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .olawale-about-mv-single-card h3 {
            font-size: 1.8rem;
            color: var(--olawale-gold-accent);
            margin-bottom: 1rem;
        }

        .olawale-about-mv-single-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(249, 249, 249, 0.9);
        }

        /* Team Section */
        .olawale-about-team-showcase-area {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .olawale-about-team-showcase-area h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: var(--olawale-navy-primary);
        }

        .olawale-about-gold-highlight {
            color: var(--olawale-gold-accent);
        }

        .olawale-about-team-desc-subheading {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
            line-height: 1.8;
        }

        .olawale-about-team-members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .olawale-about-team-member-profile-box {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(11, 19, 43, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .olawale-about-team-member-profile-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(11, 19, 43, 0.2);
        }

        .olawale-about-team-member-avatar {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, var(--olawale-navy-primary) 0%, var(--olawale-gold-accent) 100%);
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .olawale-about-team-member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.5s ease;
        }

        .olawale-about-team-member-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 19, 43, 0.3);
            pointer-events: none;
        }

        .olawale-about-team-member-avatar:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .olawale-about-team-member-avatar:hover img {
            transform: scale(1.05);
        }

        .olawale-about-team-member-details {
            padding: 2rem;
            text-align: center;
        }

        .olawale-about-team-member-details h3 {
            font-size: 1.5rem;
            color: var(--olawale-navy-primary);
            margin-bottom: 0.5rem;
        }

        .olawale-about-team-member-position {
            color: var(--olawale-gold-accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .olawale-about-team-member-motto {
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
            line-height: 1.6;
        }

        /* Mobile toggle functionality */
        .olawale-team-toggle-container {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
        }

        .olawale-team-toggle-btn {
            display: none;
            background: var(--olawale-gold-accent);
            color: white;
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .olawale-team-toggle-btn:hover {
            background: #c29d2f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        .olawale-team-toggle-btn:active {
            transform: translateY(0);
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .olawale-about-team-showcase-area {
                padding: 4rem 1.5rem;
            }

            .olawale-about-team-desc-subheading {
                font-size: 1rem;
                margin-bottom: 3rem;
            }

            .olawale-about-team-members-grid {
                gap: 2rem;
            }

            .olawale-team-toggle-btn {
                display: block;
            }

            /* Hide additional members on mobile by default */
            .olawale-about-team-member-profile-box:nth-child(n+4) {
                display: none;
                opacity: 0;
                transform: translateY(20px);
            }

            /* Show all when expanded */
            .team-expanded .olawale-about-team-member-profile-box:nth-child(n+4) {
                display: block;
                animation: fadeInUp 0.5s ease forwards;
            }

            /* Stagger animation for each card */
            .team-expanded .olawale-about-team-member-profile-box:nth-child(4) {
                animation-delay: 0.1s;
            }
            .team-expanded .olawale-about-team-member-profile-box:nth-child(5) {
                animation-delay: 0.2s;
            }
            .team-expanded .olawale-about-team-member-profile-box:nth-child(6) {
                animation-delay: 0.3s;
            }
            .team-expanded .olawale-about-team-member-profile-box:nth-child(7) {
                animation-delay: 0.4s;
            }
            .team-expanded .olawale-about-team-member-profile-box:nth-child(8) {
                animation-delay: 0.5s;
            }
            .team-expanded .olawale-about-team-member-profile-box:nth-child(9) {
                animation-delay: 0.6s;
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Why Work With Us */
        .olawale-about-why-choose-section {
            background: linear-gradient(135deg, #f8f9fa 0%, var(--olawale-white-bg) 100%);
            padding: 6rem 2rem;
        }

        .olawale-about-why-choose-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .olawale-about-why-choose-section h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: var(--olawale-navy-primary);
        }

        .olawale-about-why-intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
        }

        .olawale-about-why-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
        }

        .olawale-about-why-feature-item {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(11, 19, 43, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .olawale-about-why-feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(11, 19, 43, 0.15);
            border-color: var(--olawale-gold-accent);
        }

        .olawale-about-why-feature-symbol {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .olawale-about-why-feature-item h3 {
            font-size: 1.4rem;
            color: var(--olawale-navy-primary);
            margin-bottom: 1rem;
        }

        .olawale-about-why-feature-item p {
            color: #666;
            line-height: 1.7;
        }

        /* CTA Section */
        .olawale-about-cta-final-section {
            background: linear-gradient(135deg, var(--olawale-navy-primary) 0%, var(--olawale-navy-light) 100%);
            color: var(--olawale-white-bg);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .olawale-about-cta-final-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(245, 183, 0, 0.1) 0%, transparent 70%);
            animation: olawaleAboutPulseEffect 8s ease-in-out infinite;
        }

        .olawale-about-cta-centered-box {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .olawale-about-cta-centered-box h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .olawale-about-cta-centered-box p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            color: rgba(249, 249, 249, 0.9);
        }

        .olawale-about-cta-action-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--olawale-gold-accent);
            color: var(--olawale-navy-primary);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(245, 183, 0, 0.3);
        }

        .olawale-about-cta-action-btn:hover {
            background: var(--olawale-gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 183, 0, 0.5);
        }

        /* Animations */
        @keyframes olawaleAboutFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes olawaleAboutFadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes olawaleAboutFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes olawaleAboutPulseEffect {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        /* Scroll Animations */
        .olawale-about-scroll-reveal-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .olawale-about-scroll-reveal-element.olawale-about-is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .olawale-about-story-two-col-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .olawale-about-story-photo-frame {
                order: -1;
            }

            .olawale-about-story-photo-frame img {
                height: 400px;
            }
        }

        @media (max-width: 640px) {
            .olawale-about-hero-wrapper {
                min-height: 60vh;
                padding: 3rem 1.5rem;
            }

            .olawale-about-story-container,
            .olawale-about-team-showcase-area,
            .olawale-about-why-choose-section {
                padding: 4rem 1.5rem;
            }

            .olawale-about-mission-vision-block {
                padding: 4rem 1.5rem;
            }

            .olawale-about-cta-final-section {
                padding: 4rem 1.5rem;
            }

            .olawale-about-inspirational-quote-card {
                padding: 2rem 1.5rem;
            }

            .olawale-about-inspirational-quote-card p {
                font-size: 1.2rem;
            }

            .olawale-about-team-members-grid,
            .olawale-about-why-features-grid {
                grid-template-columns: 1fr;
            }
        }










        .olawale-testimonials-wrapper {
            padding: 110px 20px 100px;
            background: linear-gradient(180deg, #0b132b 0%, #1a2847 100%);
            position: relative;
            overflow: hidden;
        }

        .olawale-testimonials-wrapper::before {
            content: '';
            position: absolute;
            top: -25%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(245, 183, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .olawale-testimonials-wrapper::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 183, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .olawale-testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .olawale-testimonials-header {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(40px);
            animation: olawaleTestimonialsFadeIn 0.9s ease forwards;
        }

        .olawale-testimonials-label {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #f5b700;
            background: rgba(245, 183, 0, 0.1);
            padding: 10px 28px;
            border-radius: 50px;
            border: 1px solid rgba(245, 183, 0, 0.3);
            margin-bottom: 22px;
            backdrop-filter: blur(10px);
        }

        .olawale-testimonials-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: #f9f9f9;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .olawale-testimonials-header h2 .olawale-testimonials-highlight {
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .olawale-testimonials-subtext {
            font-size: 18px;
            color: rgba(249, 249, 249, 0.8);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* Testimonials Slider */
        .olawale-testimonials-slider-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .olawale-testimonials-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .olawale-testimonial-card {
            min-width: 100%;
            padding: 0 15px;
            opacity: 0;
            transform: translateY(50px);
            animation: olawaleTestimonialsFadeIn 0.8s ease forwards;
        }

        .olawale-testimonial-card-inner {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 183, 0, 0.15);
            border-radius: 24px;
            padding: 50px 45px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .olawale-testimonial-card-inner:hover {
            transform: translateY(-8px);
            border-color: rgba(245, 183, 0, 0.5);
            box-shadow: 0 20px 60px rgba(245, 183, 0, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .olawale-testimonial-quote-icon {
            position: absolute;
            top: 30px;
            right: 40px;
            width: 60px;
            height: 60px;
            opacity: 0.15;
        }

        .olawale-testimonial-quote-icon img {
            width: 100%;
            height: 100%;
            fill: #f5b700;
        }

        .olawale-testimonial-content {
            position: relative;
            z-index: 2;
        }

        .olawale-testimonial-text {
            font-size: 20px;
            line-height: 1.8;
            color: #f9f9f9;
            margin-bottom: 35px;
            font-style: italic;
            font-weight: 300;
        }

        .olawale-testimonial-rating {
            display: flex;
            gap: 6px;
            margin-bottom: 30px;
        }

        .olawale-testimonial-star {
            width: 22px;
            height: 22px;
        }

        .olawale-testimonial-star svg {
            width: 100%;
            height: 100%;
            fill: #f5b700;
            filter: drop-shadow(0 2px 4px rgba(245, 183, 0, 0.3));
        }

        .olawale-testimonial-author-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .olawale-testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(245, 183, 0, 0.4);
            box-shadow: 0 4px 15px rgba(245, 183, 0, 0.2);
            flex-shrink: 0;
        }

        .olawale-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .olawale-testimonial-author-info {
            flex: 1;
        }

        .olawale-testimonial-author-name {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #f9f9f9;
            margin-bottom: 5px;
        }

        .olawale-testimonial-author-role {
            font-size: 15px;
            color: rgba(249, 249, 249, 0.7);
            line-height: 1.4;
        }

        /* Navigation Arrows */
        .olawale-testimonials-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            margin-top: 55px;
        }

        .olawale-testimonials-arrow {
            width: 55px;
            height: 55px;
            background: rgba(245, 183, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(245, 183, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .olawale-testimonials-arrow:hover {
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            border-color: #f5b700;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(245, 183, 0, 0.4);
        }

        .olawale-testimonials-arrow svg {
            width: 24px;
            height: 24px;
            fill: #f9f9f9;
            transition: fill 0.3s ease;
        }

        .olawale-testimonials-arrow:hover svg {
            fill: #0b132b;
        }

        .olawale-testimonials-arrow.olawale-testimonials-disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Dots Indicator */
        .olawale-testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .olawale-testimonials-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(245, 183, 0, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .olawale-testimonials-dot.olawale-testimonials-dot-active {
            background: linear-gradient(135deg, #f5b700 0%, #ffcc33 100%);
            width: 40px;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(245, 183, 0, 0.5);
        }

        /* Animations */
        @keyframes olawaleTestimonialsFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .olawale-testimonials-wrapper {
                padding: 90px 20px 80px;
            }

            .olawale-testimonials-header h2 {
                font-size: 44px;
            }

            .olawale-testimonial-card-inner {
                padding: 45px 40px;
            }

            .olawale-testimonial-text {
                font-size: 19px;
            }
        }

        @media (max-width: 768px) {
            .olawale-testimonials-wrapper {
                padding: 70px 20px 65px;
            }

            .olawale-testimonials-header {
                margin-bottom: 55px;
            }

            .olawale-testimonials-header h2 {
                font-size: 36px;
            }

            .olawale-testimonials-subtext {
                font-size: 17px;
            }

            .olawale-testimonial-card-inner {
                padding: 40px 30px;
            }

            .olawale-testimonial-text {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .olawale-testimonial-quote-icon {
                width: 50px;
                height: 50px;
                top: 25px;
                right: 25px;
            }

            .olawale-testimonial-avatar {
                width: 60px;
                height: 60px;
            }

            .olawale-testimonial-author-name {
                font-size: 18px;
            }

            .olawale-testimonial-author-role {
                font-size: 14px;
            }

            .olawale-testimonials-nav {
                margin-top: 45px;
                gap: 20px;
            }

            .olawale-testimonials-arrow {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .olawale-testimonials-wrapper {
                padding: 60px 15px 55px;
            }

            .olawale-testimonials-header h2 {
                font-size: 30px;
            }

            .olawale-testimonials-label {
                font-size: 11px;
                letter-spacing: 2px;
                padding: 8px 22px;
            }

            .olawale-testimonial-card-inner {
                padding: 35px 25px;
            }

            .olawale-testimonial-text {
                font-size: 17px;
            }

            .olawale-testimonial-author-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .olawale-testimonials-arrow {
                width: 45px;
                height: 45px;
            }

            .olawale-testimonials-arrow svg {
                width: 20px;
                height: 20px;
            }
        }



        .olawale-footer-demo-spacer {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F9F9F9 0%, #e8e8e8 100%);
            padding: 2rem;
        }

        .olawale-footer-demo-content {
            text-align: center;
            max-width: 600px;
        }

        .olawale-footer-demo-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: #0B132B;
            margin-bottom: 1rem;
        }

        .olawale-footer-demo-content p {
            font-size: 1.2rem;
            color: #666;
        }

        /* Footer Main Container */
        .olawale-site-footer-master-container {
            background: linear-gradient(180deg, #0B132B 0%, #1C2541 100%);
            color: #F9F9F9;
            padding: 5rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .olawale-site-footer-master-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #F5B700 50%, transparent 100%);
        }

        .olawale-footer-inner-wrapper-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: olawaleFooterFadeUpAnimation 1s ease-out forwards;
        }

        /* Column 1 - Brand & Mission */
        .olawale-footer-brand-mission-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .olawale-footer-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .olawale-footer-logo-symbol {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #F5B700 0%, #d4a000 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: #0B132B;
            box-shadow: 0 5px 15px rgba(245, 183, 0, 0.3);
        }

        .olawale-footer-brand-name-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #F9F9F9;
            letter-spacing: -0.5px;
        }

        .olawale-footer-mission-tagline-text {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(249, 249, 249, 0.85);
            max-width: 400px;
        }

        /* Column 2 - Quick Navigation */
        .olawale-footer-navigation-links-column {
            display: flex;
            flex-direction: column;
        }

        .olawale-footer-column-heading-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #F5B700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .olawale-footer-nav-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .olawale-footer-nav-link-item {
            position: relative;
        }

        .olawale-footer-nav-anchor-link {
            color: rgba(249, 249, 249, 0.85);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-bottom: 2px;
        }

        .olawale-footer-nav-anchor-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #F5B700;
            transition: width 0.3s ease;
        }

        .olawale-footer-nav-anchor-link:hover {
            color: #F5B700;
            transform: translateX(5px);
        }

        .olawale-footer-nav-anchor-link:hover::after {
            width: 100%;
        }

        /* Column 3 - Contact & Social */
        .olawale-footer-contact-social-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .olawale-footer-contact-info-block {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .olawale-footer-contact-item-row {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: rgba(249, 249, 249, 0.85);
            font-size: 0.95rem;
        }

        .olawale-footer-contact-icon-wrapper {
            font-size: 1.2rem;
            color: #F5B700;
        }

        .olawale-footer-contact-link-element {
            color: rgba(249, 249, 249, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .olawale-footer-contact-link-element:hover {
            color: #F5B700;
        }

        .olawale-footer-social-media-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .olawale-footer-social-icons-row {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .olawale-footer-social-icon-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(249, 249, 249, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F9F9F9;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .olawale-footer-social-icon-link:hover {
            background: #F5B700;
            color: #0B132B;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 183, 0, 0.4);
            border-color: #F5B700;
        }

        /* Bottom Row - Copyright & Back to Top */
        .olawale-footer-bottom-bar-section {
            border-top: 1px solid rgba(249, 249, 249, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .olawale-footer-copyright-text-element {
            color: rgba(249, 249, 249, 0.7);
            font-size: 0.95rem;
        }

        .olawale-footer-back-to-top-button {
            background: rgba(245, 183, 0, 0.1);
            color: #F5B700;
            border: 2px solid #F5B700;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            font-family: 'Lato', sans-serif;
        }

        .olawale-footer-back-to-top-button:hover {
            background: #F5B700;
            color: #0B132B;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 183, 0, 0.4);
        }

        .olawale-footer-arrow-up-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .olawale-footer-back-to-top-button:hover .olawale-footer-arrow-up-icon {
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes olawaleFooterFadeUpAnimation {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .olawale-footer-inner-wrapper-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .olawale-footer-brand-mission-column {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .olawale-site-footer-master-container {
                padding: 3rem 1.5rem 2rem;
            }

            .olawale-footer-inner-wrapper-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .olawale-footer-brand-mission-column {
                grid-column: auto;
            }

            .olawale-footer-bottom-bar-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .olawale-footer-demo-content h1 {
                font-size: 2rem;
            }

            .olawale-footer-demo-content p {
                font-size: 1rem;
            }
        }





        



          .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.2rem 3rem;
            background: #F5B700;
            color: #0B132B;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(245, 183, 0, 0.3);
        }

        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(245, 183, 0, 0.5);
            background: #d9a100;
        }

        .hero-cta i {
            font-size: 1.3rem;
            transition: transform 0.4s ease;
        }

        .hero-cta:hover i {
            transform: translateY(3px);
        }










        .zreg-container-main-wrapper {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Content Limiter */
.zreg-content-limiter {
  max-width: 1200px;
  margin: 0 auto;
  animation: zregFadeInUp 0.8s ease-out;
}

/* Section Header */
.zreg-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.zreg-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.zreg-sub-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Layout Grid - NOW VERTICAL STACK */
.zreg-layout-grid {
  display: flex; /* ← CHANGED: From grid to flex for vertical stacking */
  flex-direction: column; /* ← CHANGED: Stack vertically */
  gap: 50px;
  align-items: center;
}

/* Flyer Column - NOW FULL WIDTH */
.zreg-flyer-column {
  width: 100%; /* ← CHANGED: Full width */
  max-width: 1200px; /* ← CHANGED: Generous max-width */
  animation: zregSlideInLeft 0.8s ease-out;
}

.zreg-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%; /* ← CHANGED: Ensure full width */
}

.zreg-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(10, 35, 66, 0.25);
}

.zreg-flyer-image {
  width: 100%; /* ← CHANGED: Full width */
  height: auto; /* ← CHANGED: Auto height to maintain aspect ratio */
  display: block;
  object-fit: contain; /* ← CHANGED: From 'cover' to 'contain' - shows full image naturally */
  min-height: unset; /* ← CHANGED: Remove min-height restriction */
}

.zreg-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.95), transparent);
  padding: 40px 30px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.zreg-image-wrapper:hover .zreg-image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.zreg-overlay-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.zreg-overlay-text {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Form Column - NOW CENTERED */
.zreg-form-column {
  width: 100%; /* ← CHANGED: Full width */
  max-width: 700px; /* ← CHANGED: Reasonable form width */
  animation: zregSlideInRight 0.8s ease-out;
}

.zreg-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(10, 35, 66, 0.1);
  border: 1px solid rgba(10, 35, 66, 0.05);
}

.zreg-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 8px;
}

.zreg-form-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 30px;
}

/* Form Elements */
.zreg-form-element {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zreg-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zreg-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A2342;
  letter-spacing: 0.3px;
}

.zreg-required {
  color: #dc3545;
}

.zreg-input-field,
.zreg-select-field {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  color: #0A2342;
  transition: all 0.3s ease;
  font-family: inherit;
}

.zreg-input-field:focus,
.zreg-select-field:focus {
  outline: none;
  border-color: #F9A826;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 168, 38, 0.1);
}

.zreg-input-field::placeholder {
  color: #adb5bd;
}

.zreg-select-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A2342' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Error Messages */
.zreg-error-msg {
  font-size: 0.85rem;
  color: #dc3545;
  min-height: 20px;
  display: block;
}

/* Submit Button */
.zreg-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #F9A826 0%, #ffb84d 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(249, 168, 38, 0.3);
  margin-top: 16px;
}

.zreg-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 168, 38, 0.4);
  background: linear-gradient(135deg, #ffb84d 0%, #F9A826 100%);
}

.zreg-submit-btn:active {
  transform: translateY(0);
}

.zreg-btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.zreg-submit-btn:hover .zreg-btn-icon {
  transform: translateX(4px);
}

/* Animations */
@keyframes zregFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zregSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zregSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design - Tablet */
@media (max-width: 968px) {
  .zreg-flyer-column {
    max-width: 100%; /* ← CHANGED: Full width on tablet */
  }

  .zreg-form-column {
    max-width: 600px; /* ← CHANGED: Slightly narrower form on tablet */
  }

  .zreg-main-heading {
    font-size: 2rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 640px) {
  .zreg-container-main-wrapper {
    padding: 60px 16px;
  }

  .zreg-section-header {
    margin-bottom: 40px;
  }

  .zreg-main-heading {
    font-size: 1.75rem;
  }

  .zreg-sub-description {
    font-size: 1rem;
  }

  .zreg-form-wrapper {
    padding: 30px 24px;
  }

  .zreg-form-title {
    font-size: 1.6rem;
  }

  .zreg-overlay-title {
    font-size: 1.4rem;
  }

  .zreg-overlay-text {
    font-size: 0.9rem;
  }

  .zreg-submit-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .zreg-layout-grid {
    gap: 40px; /* ← CHANGED: Smaller gap on mobile */
  }
}









/* Info Content Block Styles */
.zreg-info-content-block {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(10, 35, 66, 0.08);
  margin-bottom: 50px;
  max-width: 1200px;
  width: 100%;
}

.zreg-info-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid #F9A826;
}

.zreg-info-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0A2342;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.zreg-info-tagline {
  font-size: 1.3rem;
  color: #F9A826;
  font-weight: 600;
  margin-bottom: 8px;
  font-style: italic;
}

.zreg-info-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.zreg-info-section {
  margin-bottom: 40px;
}

.zreg-info-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 16px;
  border-left: 5px solid #F9A826;
  padding-left: 20px;
}

.zreg-info-text {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 12px;
}

.zreg-pillars-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.zreg-pillar-item {
  padding: 18px 24px;
  background: #f8f9fa;
  border-left: 4px solid #F9A826;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #2d3748;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.zreg-pillar-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 35, 66, 0.1);
  transform: translateX(8px);
}

.zreg-pillar-item strong {
  color: #0A2342;
  display: block;
  margin-bottom: 4px;
}

.zreg-benefits-detail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.zreg-benefit-detail-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
}

.zreg-benefit-detail-item:last-child {
  border-bottom: none;
}

.zreg-benefit-icon {
  color: #F9A826;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.zreg-benefit-detail-item strong {
  color: #0A2342;
}

.zreg-program-details {
  background: linear-gradient(135deg, #0A2342 0%, #163a5f 100%);
  padding: 30px;
  border-radius: 12px;
  margin-top: 16px;
}

.zreg-program-details .zreg-info-text {
  color: #ffffff;
  margin-bottom: 12px;
}

.zreg-program-details strong {
  color: #F9A826;
}

.zreg-enrollment-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.zreg-enrollment-steps li {
  padding: 16px 24px;
  background: #f0f9ff;
  border-left: 4px solid #0A2342;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #2d3748;
  line-height: 1.6;
}

.zreg-enrollment-steps strong {
  color: #0A2342;
}

.zreg-contact-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.zreg-quote-section {
  margin-top: 50px;
  text-align: center;
}

.zreg-closing-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #0A2342;
  line-height: 1.8;
  padding: 30px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  border-left: 6px solid #F9A826;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zreg-quote-author {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9A826;
  font-style: normal;
}

/* Responsive for Info Section */
@media (max-width: 768px) {
  .zreg-info-content-block {
    padding: 40px 30px;
  }

  .zreg-info-main-title {
    font-size: 2rem;
  }

  .zreg-info-section-title {
    font-size: 1.5rem;
  }

  .zreg-closing-quote {
    font-size: 1.1rem;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .zreg-info-content-block {
    padding: 30px 20px;
  }

  .zreg-info-main-title {
    font-size: 1.6rem;
  }

  .zreg-info-tagline {
    font-size: 1.1rem;
  }
}







.xbook-gallery-main-container {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
}

/* Content Wrapper */
.xbook-gallery-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.xbook-gallery-header-zone {
  text-align: center;
  margin-bottom: 60px;
}

.xbook-gallery-primary-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.xbook-gallery-subtitle-desc {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Books Grid Layout */
.xbook-gallery-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Individual Book Card */
.xbook-gallery-item-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(10, 35, 66, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.xbook-gallery-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.15);
}

/* Image Holder */
.xbook-gallery-image-holder {
  position: relative;
  width: 100%;
  padding-bottom: 140%; /* 1:1.4 aspect ratio for book covers */
  overflow: hidden;
}

/* Book Cover Image */
.xbook-gallery-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.xbook-gallery-item-card:hover .xbook-gallery-cover-image {
  transform: scale(1.08);
}

/* Hover Overlay */
.xbook-gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.xbook-gallery-item-card:hover .xbook-gallery-hover-overlay {
  opacity: 1;
}

/* Action Zone for Button */
.xbook-gallery-action-zone {
  text-align: center;
  margin-top: 40px;
  display: none; /* Hidden by default, shown on mobile via JS */
}

/* See More Button */
.xbook-gallery-see-more-btn {
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #F9A826 0%, #ffb84d 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 168, 38, 0.3);
  font-family: inherit;
}

.xbook-gallery-see-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(249, 168, 38, 0.4);
  background: linear-gradient(135deg, #ffb84d 0%, #F9A826 100%);
}

.xbook-gallery-see-more-btn:active {
  transform: translateY(-1px);
}

.xbook-btn-icon-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.xbook-gallery-see-more-btn:hover .xbook-btn-icon-arrow {
  transform: translateY(4px);
}

/* Hidden State for Books (Mobile Only) */
.xbook-gallery-item-hidden {
  display: none;
  opacity: 0;
}

/* Animation for Revealing Books */
.xbook-gallery-item-reveal {
  animation: xbookFadeInUp 0.5s ease-out forwards;
}

@keyframes xbookFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktops */
@media (min-width: 1400px) {
  .xbook-gallery-grid-layout {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) and (max-width: 1399px) {
  .xbook-gallery-grid-layout {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .xbook-gallery-main-container {
    padding: 70px 20px;
  }

  .xbook-gallery-grid-layout {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .xbook-gallery-primary-heading {
    font-size: 2.2rem;
  }
}

/* Mobile Devices */
@media (max-width: 767px) {
  .xbook-gallery-main-container {
    padding: 60px 16px;
  }

  .xbook-gallery-header-zone {
    margin-bottom: 40px;
  }

  .xbook-gallery-primary-heading {
    font-size: 2rem;
  }

  .xbook-gallery-subtitle-desc {
    font-size: 1rem;
  }

  .xbook-gallery-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Show the "See More" button on mobile */
  .xbook-gallery-action-zone {
    display: block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .xbook-gallery-grid-layout {
    gap: 16px;
  }

  .xbook-gallery-see-more-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}