/* ================================
   CSS Variables & Reset - Dark Mode
   ================================ */
:root {
    /* Primary Colors */
    --primary-red: #640d14;
    --dark-red: #4a0a0f;
    --light-red: #9a1520;
    --accent-red: #c72c36;

    /* Dark Background Colors */
    --bg-dark: #0f1419;
    --bg-darker: #0a0d11;
    --bg-card: #1a1f26;
    --bg-elevated: #232931;

    /* Text Colors */
    --text-primary: #e8eaed;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-gold: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #640d14 0%, #9a1520 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1f26 0%, #232931 100%);
    --gradient-hero: linear-gradient(135deg, #0f1419 0%, #640d14 50%, #0f1419 100%);
    --gradient-card: linear-gradient(145deg, #1a1f26 0%, #232931 100%);

    /* Shadows - Enhanced for dark mode */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(100, 13, 20, 0.3);

    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Utility Classes
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.highlight {
    color: #f5d742;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(245, 215, 66, 0.5), 0 0 30px rgba(245, 215, 66, 0.3);
}

/* ================================
   Typography
   ================================ */
.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: capitalize;
}

.section-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-transform: capitalize;
}

.section-body {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 30px rgba(100, 13, 20, 0.5), var(--shadow-xl);
    border-color: var(--light-red);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 20px rgba(232, 234, 237, 0.3);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-contact {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
    padding: 12px 28px;
}

.btn-contact:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: var(--primary-red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(100, 13, 20, 0.6);
}

.btn-contact:active {
    transform: translateY(-1px) scale(1.03);
}

/* ================================
   Header
   ================================ */
#header {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(100, 13, 20, 0.2);
}

#header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-darker);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 20px;
}

#header .logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition-base);
    display: block;
}

#header .logo a:hover {
    opacity: 0.8;
}

#header .logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-base);
}

#header.scrolled .logo-img {
    height: 40px;
}

#header nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

#header nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
    position: relative;
}

#header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(100, 13, 20, 0.5);
}

#header nav ul li a:hover {
    color: var(--text-primary);
}

#header nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* ================================
   Hero/Banner Section
   ================================ */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    color: var(--white);
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 13, 17, 0.85) 0%, rgba(15, 20, 25, 0.75) 50%, rgba(10, 13, 17, 0.85) 100%);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(100, 13, 20, 0.7);
    color: var(--text-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: rgba(100, 13, 20, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(100, 13, 20, 0.6);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(100, 13, 20, 0.8);
}

/* Text Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-banner::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 1440 320"><path fill="%23E52534" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(100, 13, 20, 0.3) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
}

.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: capitalize;
}

.hero-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.95;
    text-transform: capitalize;
}

.hero-body {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Shapes Animation */
.hero-banner .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-banner .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.15) 0%, rgba(100, 13, 20, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-banner .shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation: float 20s infinite ease-in-out;
}

.hero-banner .shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

.hero-banner .shape-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 10%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ================================
   About Section - Section 2 with Background Elements
   ================================ */
.about-section {
    padding: 100px 20px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* Additional Floating Shapes */
.about-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.about-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.15) 0%, rgba(100, 13, 20, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.about-section .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 18s infinite ease-in-out;
}

.about-section .shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 8%;
    animation: float 22s infinite ease-in-out reverse;
}

.about-section .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 75%;
    animation: float 15s infinite ease-in-out;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-section .section-heading,
.about-section .section-subheading,
.about-section .section-body {
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(100, 13, 20, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
    filter: brightness(0.9);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.about-emphasis {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--text-primary);
    margin: 32px 0 16px 0;
    line-height: 1.3;
    text-transform: none;
}

/* ================================
   Services Section - Section 3 with Gradient Background
   ================================ */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Gradient Background Overlay */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(100, 13, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 13, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Shapes */
.services-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.services-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.18) 0%, rgba(100, 13, 20, 0.08) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(50px);
}

.services-section .shape-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    right: 5%;
    animation: float 20s infinite ease-in-out;
}

.services-section .shape-2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    left: 5%;
    animation: float 17s infinite ease-in-out reverse;
}

.services-section .shape-3 {
    width: 220px;
    height: 220px;
    top: 45%;
    left: 40%;
    animation: float 24s infinite ease-in-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.services-section .section-heading,
.services-section .section-subheading {
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--gradient-card);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(100, 13, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(100, 13, 20, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-card p a {
    color: #f5d742;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    text-shadow: 0 0 10px rgba(245, 215, 66, 0.3);
}

.service-card p a:hover {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(245, 215, 66, 0.5), 0 0 30px rgba(245, 215, 66, 0.3);
}

/* ================================
   Our Presence Section - Section 4
   ================================ */
.presence-section {
    padding: 100px 20px;
    background-image: url('../images/Our Presence.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

/* Background overlay */
.presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 13, 17, 0.92) 0%,
        rgba(26, 31, 38, 0.88) 50%,
        rgba(10, 13, 17, 0.92) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Additional overlay for depth */
.presence-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(100, 13, 20, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(100, 13, 20, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.presence-section .container {
    position: relative;
    z-index: 2;
}

.presence-section .section-heading {
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.presence-section .section-body {
    position: relative;
    z-index: 2;
}

/* Province Cards */
.province-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.province-card {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(100, 13, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.province-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(100, 13, 20, 0.4), 0 0 0 1px rgba(100, 13, 20, 0.5);
    border-color: var(--primary-red);
}

.province-card-header {
    background: var(--gradient-primary);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.province-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.province-card:hover .province-card-header::before {
    opacity: 1;
}

.province-card-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.province-card-body {
    padding: 30px 25px;
}

.town-list {
    list-style: none;
    margin-bottom: 20px;
}

.town-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(100, 13, 20, 0.15);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.town-list li:last-child {
    border-bottom: none;
}

.town-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.province-card:hover .town-list li {
    padding-left: 25px;
    color: var(--text-primary);
}

.province-card:hover .town-list li::before {
    opacity: 1;
    left: 5px;
}

.expansion-note {
    background: rgba(100, 13, 20, 0.15);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-red);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.province-card:hover .expansion-note {
    background: rgba(100, 13, 20, 0.25);
    transform: translateX(5px);
}

.expansion-note i {
    color: var(--primary-red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.expansion-note p {
    color: var(--text-secondary);
    font-size: 13px;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .province-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .province-card-header h3 {
        font-size: 24px;
    }
}

/* ================================
   Province Image Modal
   ================================ */
.province-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.province-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 13, 20, 0.3);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(100, 13, 20, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg) scale(1.1);
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.modal-carousel {
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-darker);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide-item {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.carousel-slide-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.slide-caption {
    position: relative;
    z-index: 2;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 30px 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(100, 13, 20, 0.8);
    color: var(--text-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-carousel-control:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(100, 13, 20, 0.6);
}

.modal-carousel-control.prev {
    left: 20px;
}

.modal-carousel-control.next {
    right: 20px;
}

.modal-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.modal-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.modal-indicator.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(100, 13, 20, 0.8);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .carousel-slide-item {
        height: 300px;
    }

    .slide-caption {
        font-size: 18px;
        padding: 20px 15px;
    }

    .modal-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-carousel-control.prev {
        left: 10px;
    }

    .modal-carousel-control.next {
        right: 10px;
    }
}

/* ================================
   Our Advantage Section - Section 5 with Background
   ================================ */
.advantage-section {
    padding: 100px 20px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

/* Animated Background Grid Pattern */
.advantage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(100, 13, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 13, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.advantage-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(100, 13, 20, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating Shapes */
.advantage-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.advantage-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.16) 0%, rgba(100, 13, 20, 0.07) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(45px);
}

.advantage-section .shape-1 {
    width: 320px;
    height: 320px;
    top: 5%;
    left: 10%;
    animation: float 19s infinite ease-in-out;
}

.advantage-section .shape-2 {
    width: 260px;
    height: 260px;
    bottom: 20%;
    right: 8%;
    animation: float 23s infinite ease-in-out reverse;
}

.advantage-section .shape-3 {
    width: 240px;
    height: 240px;
    top: 50%;
    right: 5%;
    animation: float 16s infinite ease-in-out;
}

.timeline-wrapper {
    margin-top: 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    z-index: 2;
}

.advantage-section .section-heading,
.advantage-section .section-subheading {
    position: relative;
    z-index: 2;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, rgba(100, 13, 20, 0.3), rgba(100, 13, 20, 0.5), rgba(100, 13, 20, 0.3));
    z-index: 0;
    box-shadow: 0 0 10px rgba(100, 13, 20, 0.3);
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    border: 5px solid var(--bg-darker);
}

.timeline-content {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    width: 100%;
    transition: var(--transition-base);
    border: 1px solid rgba(100, 13, 20, 0.2);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-red);
}

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.timeline-content p {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.timeline-image {
    display: none; /* Hide images in horizontal layout */
}

/* ================================
   Rates Section
   ================================ */
.rates-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Floating Shapes */
.rates-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.rates-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.12) 0%, rgba(100, 13, 20, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(50px);
}

.rates-section .shape-1 {
    width: 380px;
    height: 380px;
    top: 15%;
    right: 5%;
    animation: float 21s infinite ease-in-out;
}

.rates-section .shape-2 {
    width: 290px;
    height: 290px;
    bottom: 10%;
    left: 5%;
    animation: float 18s infinite ease-in-out reverse;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 32px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid rgba(100, 13, 20, 0.2);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.tab-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--primary-red);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-red);
}

.pricing-container {
    position: relative;
    min-height: 600px;
}

.pricing-table {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.pricing-table.active {
    display: block;
}

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

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.package-header p {
    font-size: 18px;
    color: var(--text-light);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.rates-table thead {
    background: var(--gradient-secondary);
    color: var(--white);
}

.rates-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.rates-table tbody tr {
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition-base);
}

.rates-table tbody tr:hover {
    background: var(--light-gray);
}

.rates-table td {
    padding: 16px 20px;
    color: var(--text-dark);
}

.rates-table tbody tr td:first-child {
    font-weight: 600;
    color: var(--navy-blue);
}

.rates-table tbody tr td:not(:first-child):not(:nth-child(2)) {
    font-weight: 700;
    color: var(--primary-red);
}

/* ================================
   Calendly Section
   ================================ */
.calendly-section {
    padding: 100px 20px;
    background-image: url('../images/Schedule Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Background overlay */
.calendly-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 13, 17, 0.92) 0%,
        rgba(26, 31, 38, 0.88) 50%,
        rgba(10, 13, 17, 0.92) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Additional overlay for depth */
.calendly-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(100, 13, 20, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(100, 13, 20, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating Shapes */
.calendly-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.calendly-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.15) 0%, rgba(100, 13, 20, 0.08) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(48px);
}

.calendly-section .shape-1 {
    width: 340px;
    height: 340px;
    top: 10%;
    right: 8%;
    animation: float 20s infinite ease-in-out;
}

.calendly-section .shape-2 {
    width: 270px;
    height: 270px;
    bottom: 12%;
    left: 6%;
    animation: float 18s infinite ease-in-out reverse;
}

.calendly-section .shape-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    right: 10%;
    animation: float 16s infinite ease-in-out;
}

.calendly-section .container {
    position: relative;
    z-index: 2;
}

.calendly-section .section-heading,
.calendly-section .section-subheading {
    position: relative;
    z-index: 2;
}

.calendly-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-calendly {
    font-size: 18px;
    padding: 18px 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-calendly i {
    font-size: 20px;
}

/* ================================
   Contact Section - Section 6 with Background
   ================================ */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

/* Diagonal Gradient Background */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 13, 20, 0.05) 0%, transparent 50%, rgba(100, 13, 20, 0.08) 100%);
    pointer-events: none;
}

/* Floating Shapes */
.contact-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.contact-section .shape {
    position: absolute;
    background: radial-gradient(circle, rgba(100, 13, 20, 0.16) 0%, rgba(100, 13, 20, 0.08) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(48px);
}

.contact-section .shape-1 {
    width: 360px;
    height: 360px;
    top: 8%;
    left: 3%;
    animation: float 22s infinite ease-in-out;
}

.contact-section .shape-2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    right: 5%;
    animation: float 19s infinite ease-in-out reverse;
}

.contact-section .shape-3 {
    width: 230px;
    height: 230px;
    top: 55%;
    left: 70%;
    animation: float 17s infinite ease-in-out;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.contact-section .section-heading,
.contact-section .section-subheading {
    position: relative;
    z-index: 2;
}

.rates-section .section-heading,
.rates-section .section-subheading,
.rates-section .section-body {
    position: relative;
    z-index: 2;
}

.rates-section .pricing-tabs,
.rates-section .pricing-container {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-base);
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--gradient-card);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(100, 13, 20, 0.3);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(100, 13, 20, 0.3);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-base);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(100, 13, 20, 0.2);
}

.form-group select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* ================================
   Footer
   ================================ */
#footer {
    background: var(--bg-darker);
    color: var(--text-secondary);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(100, 13, 20, 0.2);
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(100, 13, 20, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(100, 13, 20, 0.6);
}

/* ================================
   Mobile Navigation
   ================================ */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    border-bottom: 1px solid rgba(100, 13, 20, 0.2);
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 30px 20px;
}

.mobile-nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(100, 13, 20, 0.1);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 16px 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
}

.mobile-nav ul li a:hover {
    color: var(--text-primary);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(100, 13, 20, 0.5);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .timeline-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-wrapper::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: flex !important;
    }

    .hamburger {
        display: flex;
    }

    .hero-banner {
        min-height: 80vh;
        padding: 100px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-control.prev {
        left: 15px;
    }

    .carousel-control.next {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
    }

    .table-responsive {
        font-size: 14px;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px 12px;
    }
}

@media (min-width: 769px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: flex !important;
    }
}

/* ================================
   Animations & Loading States
   ================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Scroll Reveal Animation */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation Delays */
[data-scroll-delay="100"] { transition-delay: 0.1s; }
[data-scroll-delay="200"] { transition-delay: 0.2s; }
[data-scroll-delay="300"] { transition-delay: 0.3s; }
[data-scroll-delay="400"] { transition-delay: 0.4s; }
[data-scroll-delay="500"] { transition-delay: 0.5s; }

/* Fade In Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

@media( max-width:768px ){
    .carousel-control{
        display: none;
    }
}
