*{
    font-family: 'Poppins', Arial, sans-serif;
}

:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*Navbar Start*/
.header {
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navbar base */
.navbar-nav {
    width: 100%;
    padding: 0.7rem 1rem;
}

/* Logo */
.logo-event-header h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact Info (Domain, Quick Contact, Phone) */
.contact-info {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;

}

.contact-info li {
    display: flex;
    align-items: center;

}

.contact-info img {
    vertical-align: middle;
    border-radius: 4px;
}

.contact-info .text1 {
    font-size: 14px;
    margin-left: 6px;
    font-weight: 500;
    color: #333;

}

/* Navbar Links */
.navbar-nav {

    margin-left: 15px;
    gap: 15px;
}

.navbar-nav .nav-link {

    font-size: 15px;
    font-weight: 300;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #007bff;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #f58634;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu img {
    height: 30px;
    width: 30px;
    border-radius: 100%;
    margin-right: 15px;
}

/* Right alignment for contact-info + nav */
.navbar .d-flex {
    margin-left: auto;
    /* pushes right side content */
}

/* Demo Button */
.glow-on-hover {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #007bff, #00c851);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

}

.glow-on-hover:hover {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6),
        0 0 15px rgba(0, 200, 81, 0.6);
}

/* Main menu */
.menu {
    background: #f58634;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500px;
}

.menu li {
    position: relative;
}

.menu>li>a {
    display: block;
    padding: 15px 20px;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu>li>a:hover {
    width: 400px;
    background-color: #ddd;
}

/* Dropdown */
.submenu {
    display: block;
    position: absolute;
    top: 60%;
    left: 290px;
    background: #f58634;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    width: 350px;
    display: none;
    z-index: 1000px;
    border: 1px solid #ddd;
}

.submenu li a {
    display: block;
    padding: 12px 15px;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.submenu li a:hover {
    display: block;
    background-color: #ddd;
}

/* Show submenu on hover */
.menu li:hover .submenu {
    display: block;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* prevent jumping */
  }
}

/* Hamburger toggler */
    .navbar-toggler {
      border: none;
      width: 40px;
      height: 30px;
      position: relative;
      cursor: pointer;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      border: none;
      outline: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      width: 25px;
      height: 25px;
    }



    .navbar-toggler span {
      display: block;
      height: 3px;
      width: 100%;
      background: #000;
      border-radius: 2px;
      position: absolute;
      transition: all 0.4s ease;
    }

    .navbar-toggler span:nth-child(1) {
      top: 0;
    }

    .navbar-toggler span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
    }

    .navbar-toggler span:nth-child(3) {
      bottom: 0;
    }

    .navbar-toggler.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 50%;
    }

    .navbar-toggler.active span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler.active span:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 50%;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .navbar-nav {
        flex-direction: column;
        display: none;
      }

      .navbar-nav.show {
        display: flex;
      }

      .dropdown-menu {
        position: relative;
      }

      .contact-info {
        display: none;
      }
    }

    @media (max-width: 991px) {
      .navbar-collapse {
        background-color: #fff !important;
        padding: 15px;
      }

      .navbar-nav .nav-link {
        color: #000 !important;
        /* text black for visibility */
      }
    }

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text h3 {
    color: #f36b21;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-text a {
    display: inline-block;
    background: linear-gradient(90deg, #ff6600, #ff3300);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-text a:hover {
    background: linear-gradient(90deg, #ff3300, #ff6600);
}

/* Slider */
.slider {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slides {
    display: flex;
    width: 400%;
    animation: slide 20s infinite;
}

.slides img {
    height: 400px;
    border-radius: 12px;
}

/* Auto sliding */
@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-33.50%);
    }

    100% {
        transform: translateX(-66.50%);
    }

    150% {
        transform: translateX(-100);
    }

    200% {
        transform: translateX(-133.30%);
    }

}



/* Dots */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: block;
    animation: dot 20s infinite;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 4s;
}

.dots span:nth-child(3) {
    animation-delay: 8s;
}

.dots span:nth-child(4) {
    animation-delay: 12s;
}

@keyframes dot {
    0% {
        background: #f36b21;
    }

    24% {
        background: #f36b21;
    }

    25% {
        background: #ddd;
    }
}

/* Responsive */
@media(max-width:900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
}

.about-section {
    background-color: #eefffb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 8%;
    gap: 100px;
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.about-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        position: relative;
        margin-bottom: 30px;
    }

}

/* ===== Real-Time POD Features Section ===== */
.pod-management-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.pod-management-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.pod-management-section .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* ===== Grid Layout ===== */
.pod-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Cards ===== */
.pod-management-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #06A3DA;
    /* fallback */
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.pod-management-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
}

.pod-management-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ===== Hover Effect ===== */
.pod-management-card:hover {
    transform: translateY(-8px);
    background: #f0f8ff;
    /* light hover background */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Hover background colors for each card */
.pod-management-card:nth-child(1):hover {
    background: #ff4d4d;
    /* red */
    color: #eaeaea;
}

.pod-management-card:nth-child(2):hover {
    background: #ffa000;
    /* amber */
    color: #eaeaea;
}

.pod-management-card:nth-child(3):hover {
    background: #3f51b5;
    /* blue */
    color: #eaeaea;
}

.pod-management-card:nth-child(4):hover {
    background: #4caf50;
    /* green */
    color: #eaeaea;
}

.pod-management-card:nth-child(5):hover {
    background: #06A3DA;
    /* sky blue */
    color: #eaeaea;
}

.pod-management-card:nth-child(6):hover {
    background: #ffb300;
    /* yellow */
    color: #eaeaea;
}

/* Benefits Section */

.benefits {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.benefits h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    color: #ff6a00;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-card {
    height: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: left;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: bold;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
}

.why-choose {
    width: 100%;
    background: #44444410;
    padding: 60px 20px;
    text-align: center;
}

.why-choose .container {
    width: 90%;
    margin: 0 auto;
}

.why-choose h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.why-choose .subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f57c00;
    /* orange */
    margin-bottom: 25px;
}

.why-choose p {
    font-size: 1rem;
    text-align: justify;
}

/* footer start */

.footer-1 {
    background: #19363f;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    text-align: left;
}

.footer-column-1 {
    flex: 1;
    min-width: 220px;
    margin: 15px;
}

.footer-column-1 h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.footer-column-1 p {
    line-height: 2;
    font-size: 14px;
    color: #aaa;
}

.footer-column-1 ul {
    list-style: none;
    padding: 0;
}

.footer-column-1 ul li {
    margin-bottom: 12px;
}

.footer-column-1 ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column-1 ul li a:hover {
    color: #00ffb3;
}

.footer-column-1 .contact-info {
    font-size: 14px;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 10px;
    color: #00ffb3;
}

.social-icons-1 {
    margin-top: 20px;
}

.social-icons-1 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #00b894;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons-1 a:hover {
    background: #00ffb3;
    color: #000;
}

/* copyright */

.footer-bottom-1 {
    background: #111;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    border-top: 1px solid #222;
    color: #00b894;
}

.footer-bottom-1 p {
    margin: 5px 0;
}

.footer-bottom-1 a {
    color: #fff;
    text-decoration: underline;
    transition: 0.3s;
}

.footer-bottom-1 a:hover {
    color: #00ffb3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-1 {
        flex-direction: column;
        text-align: center;
    }
}