/*
Theme Name: BYB setu Theme
Author: Team BYB setu
Description: A custom WordPress theme converted from static HTML.
Version: 1.0
*/



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00297C;
    --secondary: #FE7743;
    --background: #ffffff;
    --backgroun: #050000;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--background);
}

.btn-secondary:hover {
    background: var(--secondary);
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

/* Header */
/* === Navigation Hover Underline (Orange) === */
.nav-list li a {
  position: relative;
  color: #002060;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #FE7743; /* Orange underline */
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}
.header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-4xl);
    font-weight: 1000;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text2 {
    color: var(--primary); 
}

.logo-text1 {
    color: var(--secondary); 
}

/* Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-btn {
    display: none;
}

@media (min-width: 640px) {
    .contact-btn {
        display: inline-flex;
    }
}

/* Container for icon (circle background) */
.contact-icon {
    background-color: var(--secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* SVG inside the container */
.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--background) /* make sure it's visible (white on dark bg) */
}


/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--foreground);
    margin: 2px 0;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-link {
    display: block;
    padding: var(--spacing-md) 0;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-mobile-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 40vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;       /* centers vertically */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    justify-items: center;
    color: var(--background);
    text-align: center;
    margin-bottom: 0; /* remove bottom offset */
}

@media (min-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        justify-items: start;
    }
}

.slide-text {
    animation: slideInLeft 1s ease-out;
}

.slide-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.1;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .slide-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: var(--font-size-6xl);
    }
}

.slide-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    justify-content: center;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .slide-subtitle {
        font-size: var(--font-size-xl);
    }
}

.slide-btn {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    background: var(--secondary);
}

.slide-image {
    display: none;
    animation: slideInRight 1s ease-out;
}

@media (min-width: 1024px) {
    .slide-image {
        display: block;
        text-align: center;
    }
}

.slide-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    max-height: 400px;
    object-fit: cover;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--background);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: var(--spacing-lg);
}

.next-btn {
    right: var(--spacing-lg);
}



/* Stats Section */
.stats {
    background: var(--primary);
    padding: var(--spacing-xl) 0;
    color: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--background);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: var(--font-size-5xl);
    }
}

.stat-label {
    font-size: var(--font-size-base);
    font-weight: 500;
    opacity: 0.9;
}

/* Remove unwanted gap/line between hero and stats section */
.hero {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    background-clip: border-box;
}

.stats {
    margin-top: 0;
    border-top: none;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: var(--spacing-4xl) 0;
    background: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slow);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-5xl);
    }
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    color: var(--foreground);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-slow);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (max-width: 640px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin: 0 auto var(--spacing-sm);
}

.feature-card h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: var(--font-size-xs);
    color: var(--muted-foreground);
    margin: 0;
}

/* Services Section */
.services {
    background: var(--muted);
    padding: var(--spacing-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--background);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.service-btn {
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 5rem 0;
    background-color: var(--background);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.company-card {
    text-align: center;
    padding: 2rem;
          border: 1px solid var(--border);
          border-radius: 0.5rem;
          transition: box-shadow 0.3s;
        }

.company-card:hover {
        box-shadow: var(--shadow-xl);;
        }
    
.company-logo {
          width: 64px;
          height: 64px;
          background: var(--primary);
          border-radius: var(--radius-full);
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto var(--spacing-lg);
          transition: all var(--transition-fast);
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--background);
}
        
        
.company-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.company-category {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.company-growth {
    background-color: var(--secondary);
    font-weight: 600;
    color: var(--background);
    border-radius: var(--radius-full);
}

/* Testimonials Section */
.testimonials {
    background: var(--muted);
    padding: var(--spacing-4xl) 0;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.testimonials .section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stars {
    color: var(--warning);
    margin-bottom: var(--spacing-md);
}

blockquote {
    font-size: var(--font-size-base);
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--background);
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--primary);
}

.author-role {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

/* Testimonials Slider */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 33.3333%; /* 3 cards per view */
  padding: var(--spacing-lg);
  background: var(--background);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin: var(--spacing-md);
}


/* Orange box */
.promo-box {
  background: #f36c2d; /* orange */
  color: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 1150px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-align: center;
}
.promo-box {
  margin: 0 auto;                     /* centers the box itself */
  display: flex;                      /* centers inner content cleanly */
  flex-direction: column;
  align-items: center;                /* centers children horizontally */
}


/* Heading */
.promo-box h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff; /* changed to white for better contrast */
}


/* Paragraph */
.promo-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

/* Buttons container */
.promo-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: centre;
    margin: 20px auto 0 auto; /* ⬅ center the whole button group */
  width: fit-content;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

/* Primary button */
.btn-primary {
  background: #0b3180; /* dark blue */
  color: #fff;
}

.btn-primary:hover {
  background: #08245c;
}

/* Outline button */
.btn-outline {
  border: 2px solid #0b3180;;
  color: #0b3180;;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: #f36c2d;
}


/* Blog Section */
        .blog {
          padding: 5rem 0;
          background-color: var(--background);
        }

        .blog-section,
        .webinars-section {
          margin-bottom: 4rem;
        }

        .blog-header, .webinars-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 2rem;
        }

        .blog-section-title {
          font-size: 2rem;
          font-weight: 700;
        }

        .blog-grid,
        .webinars-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 2rem;
        }

        .blog-card,
        .webinar-card {
          background-color: var(--background);
          border: 1px solid var(--border);
          border-radius: 0.5rem;
          overflow: hidden;
          transition: box-shadow 0.3s;
        }

        .blog-card:hover,
        .webinar-card:hover {
          box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }

        .blog-image, .webinar-image {
          aspect-ratio: 16 / 9;
          overflow: hidden;
        }

        .blog-image img, .webinar-image img{
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .blog-content, .webinar-content {
          padding: 1.5rem;
        }

        .blog-title,
        .webinar-title {
          font-size: 1.125rem;
          font-weight: 600;
          margin-bottom: 0.5rem;
          line-height: 1.4;
          color: var(--primary);
        }

        .blog-description,
        .webinar-description {
          color: var(--foreground);
          line-height: 1.7;
        }

.register-btn,
.watch-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.register-btn {
  background-color: var(--secondary);
  color: var(--background);
}

.register-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.watch-btn {
  background-color: var(--primary);
  color: var(--background);
}

.watch-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
} 


       /* Newsletter Section */
.newsletter-section {
  background-color: var(--background);
  padding: calc(var(--spacing-3xl) * 1.5) var(--spacing-xl); 
  display: flex;
  justify-content: center;
  min-height: 550px; /* ↑ increased height slightly */
}

.newsletter-box {
  border: 2px solid var(--primary);
  border-radius: calc(var(--radius-xl) * 1.3); 
  padding: calc(var(--spacing-2xl) * 1.5); /* ↑ more inner padding for height */
  max-width: 1250px; /* ↑ made the box slightly wider */
  width: 100%;
  background: #fff; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
}

.newsletter-title {
  color: var(--primary);
  font-size: calc(var(--font-size-3xl) * 1.1);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.newsletter-description {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 280px; /* slightly larger input */
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 41, 124, 0.1);
}



        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--background);
            
        }

        .contact-box{
            background-color: var(--primary);
            padding: var(--spacing-2xl);
            border-radius: var(--radius-2xl);
        }

        .contact-title {
            color: var(--background);
            font-size: var(--font-size-4xl);
            font-weight: 700;
            text-align: center;
            margin-bottom: var(--spacing-md);
        }

        .contact-subtitle {
            color: var(--background);
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--spacing-3xl);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: var(--spacing-2xl);
        }

        .contact-info-title {
            color: var(--secondary);
            font-size: var(--font-size-2xl);
            font-weight: 700;
            margin-bottom: var(--spacing-2xl);
        }

        .contact-info-text {
            color: var(--background);
            margin-bottom: var(--spacing-2xl);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-2xl);
        }

        .contact-method {
            display: flex;
            gap: var(--spacing-md);
            align-items: flex-start;
        }

        

        .contact-method-title {
            color: var(--background);
            font-weight: 600;
            margin-bottom: var(--spacing-xs);
        }

        .contact-method-detail {
            color: #d1d5db;
            font-size: var(--font-size-sm);
        }

        .office-hours {
            background-color: var(--background);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
        }

        .office-hours-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: var(--spacing-md);
        }

        .office-hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: var(--spacing-sm);
            font-size: var(--font-size-sm);
        }

        .office-hours-day {
            color: var(--muted-foreground);
        }

        .office-hours-time {
            color: var(--foreground);
            font-weight: 500;
        }

        /* Contact Form */
        .contact-form-container {
            background-color: var(--background);
            border-radius: var(--radius-lg);
            padding: var(--spacing-2xl);
        }

        .contact-form-title {
            color: var(--secondary);
            font-size: var(--font-size-2xl);
            font-weight: 700;
            margin-bottom: var(--spacing-lg);
        }

        .form-group {
            margin-bottom: var(--spacing-md);
        }

        .form-label {
            display: block;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: var(--spacing-sm);
            font-size: var(--font-size-sm);
        }

        .form-required {
            color: var(--secondary);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: var(--spacing-md);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            font-size: var(--font-size-sm);
            font-family: inherit;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 41, 124, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            width: 100%;
            background-color: var(--secondary);
            color: var(--background);
            padding: var(--spacing-md) var(--spacing-lg);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: var(--font-size-base);
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        .btn-submit:hover {
            background-color: var(--secondary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-2px);
        }

       

       
/* Footer */
.footer {
    background-color: var(--muted);
    color: var(--primary);
    padding: var(--spacing-4xl) 0 var(--spacing-lg);
    border-top: 5px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.footer-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}



.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-info {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}


.cta-section {
    margin-top: var(--spacing-xl);
}

.cta-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--primary);
    font-size: var(--font-size-sm);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .carousel-nav,
    .carousel-dots,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        height: auto !important;
        min-height: auto !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
/* Hide desktop menu on mobile */
@media (max-width: 991px) {
  .nav-menu {
    display: none; /* hides the full menu when hamburger is active */
  }

  .menu-toggle {
    position: relative;
    z-index: 9999;
    display: block;
  }

  /* Fix overlap/alignment of icons */
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  /* Optional: adjust spacing around Contact button */
  .contact-button {
    margin-right: 10px;
  }
}
/* === Header Layout === */
.header {
  background: linear-gradient(to right, #7db8d3, #9ea8d4);
  padding: 10px 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-desktop {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list a {
  text-decoration: none;
  color: #001f60;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* === Button Styles === */
.contact-btn {
  background: #001f60;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
}
/* === Mobile Nav Hidden by Default === */
.nav-desktop {
  display: flex;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-desktop.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .nav-list a {
    color: #001f60;
    font-weight: 600;
  }

  /* Make sure the hamburger shows */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #001f60;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  /* Animate hamburger into “X” when menu opens */
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
/* === MOBILE MENU FINAL FIX === */

/* Base layout */
.header {
  position: relative;
  background: linear-gradient(to right, #7db8d3, #9ea8d4);
  padding: 10px 20px;
  overflow: visible !important; /* allow dropdown visibility */
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Desktop nav default */
.nav-desktop {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #001f60;
  font-weight: 600;
}

/* Contact button */
.contact-btn {
  background: #001f60;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* === Hamburger Button === */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 35px;
  border: 2px solid #001f60;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  z-index: 2000;
}

.hamburger-line {
  width: 22px;
  height: 3px;
  background-color: #001f60;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger to X */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* === MOBILE RESPONSIVE MENU === */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 10px;
    width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
  }

  .nav-desktop.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-btn {
    display: flex;
  }
}
.icon-box i,
.icon-box svg {
  width: 45px;
  height: 45px;
  border-radius: 0;
  background-color: #ff6f3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}


body {
  position: relative;
}

* {
  box-sizing: border-box;
}

/* Fix the white bar without clipping fixed elements */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;       /* hides the white line */
  }

  .contact-us-btn,
  .floating-contact,
  .contact-floating-btn {
    position: fixed;
    right: 0;
    transform: translateX(0);
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
}


/* carousel fix code*/
.carousel-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.carousel-slide.active {
  opacity: 1;
  position: relative;
}
.carousel-slide.prev {
  opacity: 0;
}

/* Remove unwanted white gap below header */
header, .site-header, .navbar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove unwanted margin from next section */
main, #main-content, .hero, .carousel-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optional: make sections stick together */
body {
  line-height: 1;
}

/* =====================================
 BYB SETU - About Page Styles (Prefixed)
 ===================================== */
/* ---------- Root Variables ---------- */
:root {
 --primary-color: var(--primary);
 --accent-color: var(--secondary);
 --light-bg: var(--muted);
 --text-color: var(--foreground);
 --muted-text: var(--muted-foreground);
 --white: var(--background);
}
/* ---------- About Hero Section ---------- */
.about-hero {
 background: linear-gradient(135deg, var(--primary) 0%, #004bb5 100%);
 color: var(--white);
 padding: 120px 0 80px;
 text-align: center;
 margin-top: 70px;
}
.about-hero h1 {
 font-size: 3rem;
 margin-bottom: 1rem;
 font-weight: 700;
}
.about-hero p {
 font-size: 1.2rem;
 max-width: 600px;
 margin: 0 auto;
 opacity: 0.9;
}
/* ---------- About Mission Section ---------- */
.about-mission {
 padding: 80px 0;
 background: var(--light-bg);
}
.about-mission h2 {
 font-size: 2.5rem;
 color: var(--primary);
 margin-bottom: 2rem;
}
.about-mission-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 3rem;
 max-width: 1000px;
 margin: 0 auto;
}
.about-mission-text {
 flex: 1;
 font-size: 1.1rem;
 line-height: 1.8;
 color: var(--muted-text);
 text-align: left;
}
.about-mission-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-mission-image img {
  width: 120%; /* increase width slightly */
  max-width: none; /* allow it to go beyond normal container width */
  height: 400px; /* keep height same */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* ---------- About Team Section ---------- */
.about-team {
 padding: 80px 0;
}
.about-team h2 {
 font-size: 2.5rem;
 color: var(--primary);
 margin-bottom: 1rem;
 text-align: center;
}
.about-team-intro {
 text-align: center;
 max-width: 800px;
 margin: 0 auto 3rem;
 font-size: 1.1rem;
 color: var(--muted-text);
}
.about-team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}
.about-team-member {
 text-align: center;
 padding: 2rem;
 background: var(--white);
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 transition: transform 0.3s;
}
.about-team-member:hover {
 transform: translateY(-5px);
}
.about-team-member img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin-bottom: 1rem;
 object-fit: cover;
}
.about-team-member h3 {
 color: var(--primary);
 margin-bottom: 0.5rem;
 font-size: 1.3rem;
}
.about-team-member .about-role {
 color: var(--accent-color);
 font-weight: 600;
 margin-bottom: 1rem;
}
.about-team-member p {
 color: var(--muted-text);
 font-size: 0.9rem;
}
/* ---------- About CTA Section ---------- */
.about-cta {
 background: var(--primary);
 color: var(--white);
 padding: 80px 0;
 text-align: center;
}
.about-cta h2 {
 font-size: 2.5rem;
 margin-bottom: 1rem;
}
.about-cta p {
 font-size: 1.1rem;
 max-width: 600px;
 margin: 0 auto 2rem;
 opacity: 0.9;
}
.about-cta-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
}
/* ---------- About Buttons ---------- */
.about-btn {
 padding: 12px 30px;
 border: none;
 border-radius: 5px;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 text-decoration: none;
 display: inline-block;
 transition: all 0.3s;
}
.about-btn-primary {
 background: var(--accent-color);
 color: var(--white);
}
.about-btn-primary:hover {
 background: #e5653a;
 transform: translateY(-2px);
}
.about-btn-secondary {
 background: transparent;
 color: var(--white);
 border: 2px solid var(--white);
}
.about-btn-secondary:hover {
 background: var(--white);
 color: var(--primary);
}
/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
 .about-hero h1 {
 font-size: 2rem;
 } .about-hero p {
 font-size: 1rem;
 }
 .about-mission h2,
 .about-team h2,
 .about-cta h2 {
 font-size: 2rem;
 }
 .about-mission-content {
 flex-direction: column;
 }
 .about-mission-image {
 flex: none;
 max-width: 100%;
 }
 .about-cta-buttons {
 flex-direction: column;
 align-items: center;
 }
}

/* Fix white gap under header */
.hero,
.about-hero,
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}

.site,
.wrapper,
main {
  margin-top: var(--spacing-xl); /* adjust if content hides under header */
}

/* Optional: if header overlaps text, increase this value slightly (e.g., 80px) */

/* === FINAL WHITE GAP + BANNER ALIGNMENT FIX === */
.about-hero {
  margin-top: 0 !important;
  padding-top: 138px !important; /* adjust to match your header height */
}


/* === FINAL WHITE BAR + ALIGNMENT FIX === */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

.stats {
  width: 100%; /* changed from 100vw */
  margin: 0;
  padding: var(--spacing-xl) 0;
  background: var(--primary);
  color: var(--background);
  overflow: hidden; /* ensures no bleed or cut */
}

.stats-grid {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* === ENABLE HORIZONTAL SCROLL ON MOBILE DEVICES === */
.banner-section {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.banner-section * {
  max-width: 100%;
  box-sizing: border-box;
}
/* === Fix horizontal scroll bar under banner === */
.hero,
.carousel-container,
.carousel-slide {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}

/*contact us container css*/

/* Remove white gap under banner */
.contact-info-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px;
  background: #f5f5f5;
;
}

.contact-card {
  flex: 1 1 250px;
  background-color: white;
  border: 3px solid #002b80;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 280px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  border: 3px solid #f8bda6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.icon-circle i {
  font-size: 55px;
  color: #002b80;
}

.contact-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002b80;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-card p {
  font-size: 1.1rem;
  color: #002b80;
  line-height: 1.5;
}

/*location*/
/* Section styling */
.connect-section {
  text-align: center;
  padding: 50px 20px;
  color: #002b80;
  font-family: 'Poppins', sans-serif;
}

.connect-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.connect-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.social {
  color: #002b80;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.social:hover {
  color: #f57c00;
  transform: scale(1.2);
}

/* form + map */
/* ===== LAYOUT ===== */
.contact-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT COLUMN */
.left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MAP */
.map-box {
  flex: 7;
  position: relative;

  min-height: 410px;   /* 👈 USE THIS */
  height: auto;

  background-image: url("assets/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;

  margin: 30px 0;
}


/* CENTER OVERLAY */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* PIN */
.map-pin {
  width: 16px;
  height: 16px;
  background: #ff7a33;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 10px;
  position: relative;
}

.map-pin::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

/* TEXT */
.map-content {
  color: #1f3c88;
  font-weight: 600;
}


/* PIN */
.map-pin {
  width: 16px;
  height: 16px;
  background: #ff7a33;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 10px;
  position: relative;
}

.map-pin::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.map-content {
  color: #1f3c88;
  line-height: 1.4;
}

/* OFFICE HOURS */
.office-hours {
  flex: 3;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  margin: 30px 0;
}

.office-hours h3 {
  color: #ff7a33;
  margin-bottom: 10px;
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 8px;
  color: #1f3c88;
}

/* FORM */
.contact-form {
  flex: 1;
  border: 2px solid #ddd;     /* ✅ outline added */
  border-radius: 12px;        /* ✅ same as map & office */
  padding: 25px;
  margin: 30px 0;
}

.contact-form h2 {
  color: #ff7a33;
  margin-bottom: 5px;
}

.contact-form p {
  color: #1f3c88;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form textarea {
  height: 110px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff7a33;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons {
    gap: 25px;
  }
  .map-container {
    width: 95%;
    height: 300px;
  }
}

/*service page*/
/* Background section */

/* ---------- HERO SECTION ---------- */
/* ---------- HERO BANNER ---------- */
.services-hero {
    background-image: url('/assets/Banner/banner2.png');
    background-size: cover;
    background-position: center;
    min-height: 54vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-bottom: 10px;
}
.products-services {
    margin-top: -30px;
}
main > section:first-child {
    margin-top: 0 !important;
}

.services-hero .overlay {
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.services-hero p {
    max-width: 700px;
    font-size: 17px;
    margin: auto;
}

/* ---------- PRODUCTS SECTION ---------- */
.products-services {
    background: #012b73;
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

.products-services h2 {
    font-size: 32px;
}

.products-services .sub-text {
    max-width: 750px;
    margin: 10px auto 40px;
    font-size: 15px;
}

/* ---------- MAIN CARD ---------- */
.services-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1250px;
    width: 100%;
    padding: 20px;
}

/* ---------- LEFT BOX ---------- */
.card-left {
    width: 50%;
    padding: 40px;
}

.icon-box img {
    width: 55px;
    height: auto;
}

.card-left h3 {
    font-size: 28px;
    margin: 15px 0;
    color: var(--primary);
}

.card-left ul {
    list-style: disc;
    padding-left: 25px;
}

.card-left ul li {
    font-size: 18px;
    line-height: 1.7;
    margin: 8px 0;
    color: var(--primary) !important;
}

/* ---------- RIGHT BOX ---------- */
.card-right {
    width: 50%;
    padding: 40px;
    border-left: 1px solid #ddd;
    text-align: center;
}

.stars {
    color: #f79f00;
    font-size: 22px;
    margin-bottom: 5px;
}

.card-right h4 {
    font-size: 40px;
    margin: 0;
    color: var(--primary) !important;
}

.project-text {
    font-size: 15px;
    color: var(--primary) !important;
    margin-top: 5px;
}

.client p {
    color: var(--primary) !important;
}

/* ---------- CLIENT BOXES (Bigger Version) ---------- */
.client-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.client {
    border: 1px solid #ddd;
    padding: 20px 25px;    /* bigger spacing */
    width: 160px;          /* bigger width */
    border-radius: 12px;   /* smoother corners */
    text-align: center;
}

.client img {
    width: 55px;            /* bigger icon */
}

.client p {
    font-size: 14px;        /* slightly larger text */
    margin-top: 8px;
}


.products-services ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .card-left,
    .card-right {
        width: 100%;
        border-left: none;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .client-box {
        flex-direction: column;
        align-items: center;
    }

    .client {
        width: 200px;  /* bigger on mobile too */
    }
}

/* ===============================
   BLOG PAGE – SCOPED STYLES ONLY
   =============================== */

/* CONTAINER */
.blog-container{
  max-width:1200px;
  margin:0 auto;
}

/* HERO */
.blog-hero{
  display:flex;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  margin-bottom:32px;
}

.blog-hero-img{
  width:35%;
  background-size:cover;
  background-position:center;
}

.blog-hero-content{
  padding:32px;
  width:65%;
}

.blog-hero-content h1{
  color:#0a3a8a;
  margin-bottom:12px;
}

.blog-hero-content p{
  color:#555;
  margin-bottom:10px;
}

.blog-hero-content span{
  font-size:14px;
  color:#888;
}

.blog-hero-content a{
  display:inline-block;
  margin-top:10px;
  color:#ff7a33;
  font-weight:600;
  text-decoration:none;
}

/* LAYOUT */
.blog-layout{
  display:grid;
  grid-template-columns:2.5fr 1fr;
  gap:24px;
  align-items:start;
}

/* SEARCH */
.blog-search{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:none;
  margin-bottom:24px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* BLOG GRID */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.blog-card{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 16px rgba(0,0,0,0.1);
}

.blog-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:12px;
}

.blog-card h3{
  font-size:17px;
  margin-bottom:6px;
}

.blog-card p{
  font-size:14px;
  color:#666;
}

.blog-card span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#888;
}

.blog-card a{
  display:inline-block;
  margin-top:10px;
  color:#ff7a33;
  font-weight:600;
  text-decoration:none;
}

/* SIDEBAR */
.blog-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.blog-box{
  background:#fff;
  padding:22px;
  border-radius:18px;
  box-shadow:0 6px 16px rgba(0,0,0,0.1);
}

.blog-box h3{
  margin-bottom:14px;
}

/* POPULAR LIST */
.blog-popular ul{
  list-style:none;
  margin:0;
  padding:0;
}

.blog-popular li{
  font-size:14px;
  padding:8px 0;
  border-bottom:1px solid #eee;
}

/* HOSTS & WRITERS */
.blog-hosts h3{
  margin-bottom:18px;
}

.blog-person{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.blog-badge{
  width:28px;
  height:28px;
  background:#ff7a33;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
  flex-shrink:0;
}

.blog-info strong{
  font-size:15px;
  display:block;
}

.blog-info span{
  font-size:14px;
  color:#555;
}

.blog-info p{
  font-size:14px;
  color:#666;
  margin-top:6px;
  line-height:1.4;
}

.blog-hosts hr{
  border:none;
  border-top:1px solid #eee;
  margin:18px 0;
}

/* SUBSCRIBE */
.blog-subscribe{
  background:#0a3a8a;
  color:#fff;
  padding:20px 24px;   /* reduced from 28px */
  border-radius:16px;  /* slightly smaller */
  text-align:center;
  margin-bottom:60px;
}

.blog-subscribe p{
  margin:8px 0 14px;   /* tighter spacing */
}

.blog-subscribe button{
  padding:10px 20px;   /* slightly smaller button */
  border:none;
  border-radius:10px;
  background:#ff7a33;
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.blog-hero{
  margin-top:60px;
}




/* -------------------------------------------
   MOBILE SCALING FIX
   ------------------------------------------- */
@media (max-width: 768px) {
    body {
        zoom: 0.6;
    }
}
