:root {
    --white: #ffffff;
    --accent-color: #f1c40f;
    /* or your theme color */
}

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2d3748;
    --text-light: #718096;
    --background-light: #f7fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background:  #445574fb;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    height: 7rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 5px;
}

    /* Remove default styling */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;     /* spacing between menu items */
  padding: 0;
  margin: 0;
}

.nav-item {
  display: inline-block;
}

.nav-link {
  text-decoration: none;
  color: #fff;                  /* text color */
  padding: 10px 18px;           /* button-like padding */
  border-radius: 25px;          /* round shape */
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.nav-link:hover {
background: #CEC1FF;
background: linear-gradient(135deg, #CEC1FF, #9BF2F2);
  color: #000;                  /* text becomes black */
}
 
/* Active page styling (Home) */
.nav-link.active {
  background-color: #fff;
  color: #000;
}

  

/* Logo Styles */
.Nav-logo img{
height: 5rem;
}

.nav-brand .logo {
    font-size: 2.5rem;
    font-weight: 700;
     color: white;
    letter-spacing: -0.5px;
}

.nav-brand .logo span {
    font-weight: 300;
    -webkit-text-fill-color: var(--text-dark);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    color: white;
}

/* .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
} */

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    /* content: ''; */
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Login Button */
.login-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu */
/* ===== MOBILE NAVBAR FIX ===== */
.hamburger {
  display: none; /* hidden for desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 999;
  position: relative;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* MOBILE VIEW */
@media (max-width: 992px) {
  .hamburger {
    display: flex;  /* ✅ now hamburger will show on mobile */
  }

  .nav-menu {
    display: none; /* hide menu by default */
    flex-direction: column;
    width: 100%;
    background: #445574fb; /* ✅ your required background */
    position: absolute;
    top: 85px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    z-index: 100;
    border-radius: 0 0 10px 10px;
  }

  .nav-menu.active {
    display: flex;
    background:  #445574fb; /* ✅ show when hamburger clicked */
  }

  .nav-item {
    margin: 12px 0;
  }

  .nav-link {
    font-size: 18px;
    font-weight: 600;
    /* background:  #445574fb !important; */
  }

  .nav-link:hover {
         background: #CEC1FF;
      background: linear-gradient(135deg, #CEC1FF, #9BF2F2);
      color: #000;
  }

  .nav-right {
    display: none; /* Hide login button on mobile if needed */
  }
}


/* Mobile responsive nav */
@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    background:  #445574fb;
    width: 100%;
    text-align: center;
    position: absolute;
    /* top: 20px; */
    left: 0;
    /* padding: 15px 0; */
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 2rem;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* width: 100%; */
}

.hero-text {
    padding-right: 2rem;
}
.section-with-video {
  position: relative;
  overflow: hidden; /* prevents video overflow */
  height: 100vh; /* or any height you prefer */
}

.hero-text video.background-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color:white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.floating-card h3 {
    color: var(--text-dark);
    font-weight: 600;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float 3s ease-in-out infinite 2s;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    /* .hamburger {
        display: flex;
    } */

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        /* color: white; */
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .search-container {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        height: 400px;
    }

    .floating-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        font-size: 1.5rem;
    }

    .login-btn span {
        display: none;
    }

    .login-btn {
        padding: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer Styles */

.footer {
    background-color: #004b73;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #00ffff;
}
    /* Social Icons Default */
.footer-social a {
  font-size: 18px;
  color: #fff;
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
    text-decoration: none;
}

/* Hover Effect - Rounded Button */
.footer-social a:hover {
  background: #fff;
  color: #111;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}


.footer-address {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Floating Chat Button */
.chat-btn {
    position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fcff4c;
  color: black;
  padding: 15px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

.chat-btn:hover {
    transform: scale(1.1);
    background-color: #c8ff00;
}

/* About section style */
/* ===== About Section Styling ===== */
.about {
    background-color: #f6f5f5;
    /* padding: 80px 10%; */
    text-align: center;
}

  .upper-section {
    background-color: #dbeae7;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
    width: 100%;
  }

  .upper-section h1 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #014470;
    text-align: center;
    /* max-width: 420px; */
    line-height: 1.1em;
  }

  .content-section {
    /* display: flex; */
    background-color: white;
    /* padding: 20px 0; */
  }

  .about-quote {
    font-size: 5rem;
    font-weight: 900;
    color: #222;
    margin-left: 30rem;
    line-height: 6rem;
}

.about-quote .highlight {
    margin-left: 10rem;
    color: #0066ff;
    /* font-size: 5rem; */
    font-weight: 800;

}

  .left {
    flex: 1;
    position: relative;
  }

  .left img {
    height: 45rem;
    margin-left: 10rem;
    margin-top: -150px;
    display: block;
    /* background: transparent; */
    width: 35rem;
  }
  
  /* Orange bars on left side */
  .bar-1 {
    position: absolute;
    bottom: 20px;
    left: 60px;
    height: 40px;
    width: 310px;
    background-color: #ee860d;
  }

  .bar-2 {
    position: absolute;
    bottom: 90px;
    left: 320px;
    height: 10px;
    width: 110px;
    /* background-color: #ee860d; */
  }

  .right {
    flex: 1;
    padding: 18px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-right: 15rem;
  }

  .right h2 {
    font-weight: 700;
    margin-bottom: 15px;
  }

  .right p strong {
    font-weight: 700;
    display: block;
  }




/* ===== New Below Paragraph Styling ===== */
.about-detailed {
    max-width: 900px;
    margin: 35px auto 0;
    padding-top: 0px;
    border-top: 5px solid #0078ff;
}

.about-detailed p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    font-family: "Poppins", sans-serif;
}

.about-container,
.about-content,
.about-image {
    display: inline-block;
    flex-direction: column;
}

.about-image {
    aspect-ratio: 1 / 1;
}

/* New section related cards*/
/* 🔹 Section underline */
.underline {
  width: 100px;
  height: 4px;
  background-color: #004080;
  border-radius: 2px;
}

/* 🔹 Card hover animation */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 🔹 Fade-in animation on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🔹 Card text styling */
.card-title {
  color: #002b5b;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-text {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}
.see-more-btn {
  background: linear-gradient(90deg, #6f42c1, #6610f2);
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}

.see-more-btn:hover {
  background: linear-gradient(90deg, #6610f2, #6f42c1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(102, 16, 242, 0.3);
}

/* 🔹 Responsive container spacing */
/* .container.text-center {
  margin-top: 40px;
  margin-bottom: 40px;
} */

/* 🔹 Image rounded corners */
.card-img-top {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

/* 🔹 Smooth grid alignment */
.row.gy-4 {
  row-gap: 2rem;
}

/* Read More Link Styling */
.read-more {
    display: inline-block;
    color: #333; /* Dark text color */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #f7e07e; /* Yellow underline/highlight */
    padding-bottom: 2px;
}

/* Reverse Layout for the Second Section */
.content-section.reverse-layout {
    flex-direction: row-reverse; /* Swaps the order of the image and text */
}

/* For the first section, if the image has text/overlay: */
.image-container:first-child::after {
    /* You could use a pseudo-element here for the colored background shape */
}

/* --- Town Infrastructure Responsive Style (from previous context) --- */
        .town-infra-slide {
            background-color: hsla(30, 14%, 95%, 0.953);
            /* max-width: 1400px; */
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .header-banner {
            background: linear-gradient(to right, #00796B, #4DB6AC); 
            padding: 60px 20px;
            text-align: center;
            box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.2);
        }
        .header-banner h1 {
            font-size: 2.5em;
            font-weight: bold;
            background-color: white; 
            color: black;
            padding: 5px 20px;
            display: inline-block;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .image-collage {
            padding: 15px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            grid-auto-rows: 150px; 
            gap: 10px;
        }
        .collage-item {
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            display: flex; 
        }
        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            display: block;
        }
        @media (min-width: 768px) {
            .header-banner h1 {
                font-size: 2em; 
            }
            .image-collage {
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 180px;
                gap: 15px;
            }
        }
        @media (min-width: 1024px) {
            .header-banner h1 {
                font-size: 2.5em;
            }
            .image-collage {
                padding: 20px;
                grid-template-columns: repeat(6, 1fr); 
                grid-auto-rows: minmax(180px, auto);
                gap: 10px;
            }
            /* Specific Grid Placement for Desktop */
            .img-1 { grid-column: 1 / span 1; grid-row: 1 / span 1; }
            .img-2 { grid-column: 2 / span 1; grid-row: 1 / span 1; }
            .img-3 { grid-column: 3 / span 1; grid-row: 1 / span 1; }
            .img-4 { grid-column: 4 / span 2; grid-row: 1 / span 2; }
            .img-5 { grid-column: 6 / span 1; grid-row: 1 / span 1; }
            .img-6 { grid-column: 1 / span 2; grid-row: 2 / span 1; }
            .img-7 { grid-column: 3 / span 1; grid-row: 2 / span 1; }
            .img-8 { grid-column: 6 / span 1; grid-row: 2 / span 1; }
            .img-9 { grid-column: 6 / span 1; grid-row: 3 / span 1; }
            .img-10 { grid-column: 5 / span 1; grid-row: 3 / span 1; }
            .img-11 { grid-column: 4 / span 1; grid-row: 3 / span 1; }
        }



        
        /* dedication Style */
        .dedication {
            /* background-image: url("./images/dedication-background.avif");
            background-repeat: no-repeat;
            background-size: cover; */
            /* FIX: Use min-height instead of fixed height for responsiveness */
            min-height: 35rem; 
            padding-bottom: 40px;
            background-color: #e0e9f6;
        }
        .page{
            margin-top: 3rem;
            display:flex;
            align-items:center;
            justify-content:center;
            padding:40px 20px;
            box-sizing:border-box;
        }
        .cardx{
            background-color: #eaa570fc;
            height: 17rem;
            margin-top: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .cardx:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 30px rgba(15,23,42,0.2);
        }
        .h1 h1{
            /* Now uses the defined variable in :root */
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            padding-top: 40px;
            font-size: clamp(1.5em, 5vw, 2.5em); /* Fluid size for title */
        }
        .cards{
            width:100%;
            max-width:1100px;
            display:grid;
            grid-template-columns: repeat(4, 1fr);
            gap:20px;
        }

        /* responsive: 2 columns on tablet, 1 column on small */
        @media (max-width:900px){
            .cards{ grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width:520px){
            .cards{ grid-template-columns: 1fr; }
        }

        .thumbnail{
            height: 10rem;
            border-radius:8px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:700;
            color: white; /* Changed icon color for visibility */
            font-size:5rem;
            letter-spacing:0.6px;
        }
        .cardx h3{
            margin:0;
            font-size:20px;
            text-align: center;
        }

        /* Transforming */
        .transforming{
            background-color: #cccdce;
            /* Add bottom padding to separate sections */
        }
        .transforming-heading {
            text-align: center;
            padding: 50px 20px 20px;
        }
        .transforming-heading h1 {
            font-size: 2.5em;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        .highlight-text {
            display: inline-block;
            background-color: #f7e07e; /* Added a highlight color */
            padding: 2px 10px;
            font-size: 1.8em;
            font-weight: bold;
            letter-spacing: 1px;
            border-radius: 4px;
        }
        .content-section {
            display: flex;
            align-items: center;
            /* background-color: grey; */
            max-width: 100%;
            margin: 0;
            /* padding: 0 20px; */
            /* gap: 40px; */
            
        }
        
        /* Media Query for Mobile/Tablet Optimization */
        @media (max-width: 850px) {
            .content-section {
                flex-direction: column;
                text-align: center;
                /* margin: 40px auto; Reduced vertical margin on mobile */
                gap: 30px; /* Reduced gap */
            }

            .content-section.reverse-layout .text-container {
                order: -1;
            }

            /* Optimized Image Size for Mobile */
            .image-container {
                flex: 0 0 75%; /* Allows image to take up less space horizontally on mobile */
                max-width: 350px; /* Max size for the circular image container */
                margin: 0 auto; /* Center the image container */
            }

            .text-container {
                padding: 0 15px; /* Adjust text padding for small screens */
            }

            .transforming-heading h1 {
                font-size: 2em;
            }
            .highlight-text {
                font-size: 1.5em;
            }
        }

        /* Image Container Styling (Desktop Default) */
        .image-container {
            flex: 0 0 40%; 
            position: relative;
        }
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 50%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .image-container video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 45%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Text Container Styling */
        .text-container {
            flex: 1;
            padding: 20px;
        }
        .text-container h2 {
            font-size: 1.8em;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        .text-container p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .read-more {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .read-more:hover {
            background-color: #2980b9;
        }

        /* this is Gauri index.html added css  */
    /* Remove default styling */
    .nav-menu {
      list-style: none;
      display: flex;
      gap: 25px;
      /* spacing between menu items */
      padding: 0;
      margin: 0;
    }

    .nav-item {
      display: inline-block;
    }

    .nav-link {
      text-decoration: none;
      color: #fff;
      /* text color */
      padding: 10px 18px;
      /* button-like padding */
      border-radius: 25px;
      /* round shape */
      transition: all 0.3s ease-in-out;
    }

    /* Hover effect */
    .nav-link:hover {
      /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=cec1ff&c2=9bf2f2&gt=l&gd=dtl
*/
      background: #CEC1FF;
      background: linear-gradient(135deg, #CEC1FF, #9BF2F2);
      color: #000;
      /* text becomes black */
    }

    /* Active page styling (Home) */
    .nav-link.active {
      background-color: #fff;
      color: #000;
    }

    /* Transforming video  */
    .image-container {
      position: relative;
      width: 100%;
      max-width: 600px;
    }

    video {
      width: 100%;
      border-radius: 10px;
    }

    /* Play button styling */
    #playBtn {
      position: absolute;
      bottom: 15px;
      left: 18rem;
      padding: 10px 18px;
      /* background: white; */
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    #playBtn:hover {
      background: black;
      color: white;
    }

    .image-container {
      position: relative;
      width: 100%;
      max-width: 600px;
    }

    video {
      width: 100%;
      border-radius: 10px;
    }

    #playBtn {
      position: absolute;
      bottom: 15px;
      left: 18rem;
      background: white;
      border: none;
      border-radius: 50%;
      padding: 12px;
      cursor: pointer;
      font-size: 20px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    #playBtn:hover {
      background: black;
      color: white;
    }
    
        