 :root{
      --c1:#d94625; /* red */
      --c2:#e74f5c; /* pinkish */
      --c3:#ea8324; /* orange */
      --c4:#00803f; /* green */
      --c5:#f3c400; /* yellow */
      --c6:#2d5f94; /* blue */
      --card-radius:14px;
    }

     *{box-sizing:border-box}
    body{font-family:'Raleway',sans-serif;background:#fff}
 
        .topbar{
            background:linear-gradient(90deg,var(--c6),var(--c1));color:#fff;
            padding:.45rem 0;
            font-size:.95rem
        }

            .topbar a{
                color:#fff;
                text-decoration:none;
                margin-right: 1rem;
            }

        .fa-brands, .fab {
       font-weight: 400;
       margin-right: 1em;
    }


/* Navbar Styling */
    .custom-navbar {
        background: #ffffff;
        padding: 15px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }


  .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl 
  {
    margin-top:-4em !important;
    margin-bottom:-4em !important;
  }  


  .navbar-expand-lg .navbar-collapse{

    margin-left:-24em;
  }

    /* Nav links */
    .custom-navbar .nav-link {
        position: relative;
        font-size: 17px;
        font-weight: 600;
        color: #333 !important;
        margin: 0 15px;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    /* Underline Animation */
    .custom-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #00803f, #f3c400, #2d5f94);
        border-radius: 50px;
        transition: width 0.4s ease;
    }

    .custom-navbar .nav-link:hover::after,
    .custom-navbar .nav-link.active::after {
        width: 100%;
    }

    /* Hover color */
    .custom-navbar .nav-link:hover {
        color: #00803f !important;
    }

    /* Toggler Icon */
    .navbar-toggler {
        border: none;
        font-size: 22px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }


   
/* Glowing Button */
.btn-glow {
    background: linear-gradient(45deg, #ff4c44, #ff914d);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255,76,68,0.6);
    transition: 0.3s;
}
.btn-glow:hover {
    box-shadow: 0 0 25px rgba(255,76,68,1);
    transform: translateY(-3px);
}

/* Modal Glow Border & Animation */
.modal-content {
    border-radius: 20px;
    background: #0e0e0e;
    color: #fff;
    border: 2px solid #ff4c44;
    box-shadow: 0 0 30px rgba(255,76,68,0.6);
    animation: popUp 0.6s ease;
}

@keyframes popUp {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Input Fields */
.modal-content .form-control,
.modal-content .form-select {
    background: white;
    color: black;
    border: 1px solid #ff4c44;
    /*padding: 12px;*/
    border-radius: 12px;
}
.modal-content .form-control:focus,
.modal-content .form-select:focus {
    box-shadow: 0 0 15px #ff4c44;
    border-color: #ff4c44;
}

/* Submit Button */
.btn-submit {
    background: #ff4c44;
    border: none;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,76,68,0.6);
    transition: 0.3s;
}
.btn-submit:hover {
    box-shadow: 0 0 25px rgba(255,76,68,1);
    transform: translateY(-3px);
}


    /* Hero carousel */
    .hero{
        min-height:78vh;
        position:relative;
        overflow:hidden
    }

    .hero .carousel-item{
        min-height:78vh;
        background-size:cover;
        background-position:center
    }

    .hero-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.45));
    }

    .hero-content{
        position:relative;
        z-index:5;
        color:#fff
    }

    .hero-buttons .btn{
        margin-right:.6rem
    }



    /* Countdown 
    .countdown{
        display:flex;
        gap:.8rem;
        align-items:center;
        margin-right: 25rem;
        margin-left: 25rem;
    }

    .countdown .box{
        background:#f3c400;
        padding: 0.6rem .9rem;
        border-radius:0px;
        text-align:center;
        color: #000;
    }

    .countdown .num{
        font-size:1.55rem;
        font-weight:800
    } /*


    /* Timer Card */
.timer-box{
    border:2px solid #0ff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 0 20px #0ff;
    background:rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

/* Number Style */
.time-num{
    font-size:60px;
    font-weight:700;
    text-shadow:0 0 15px #0ff;
    animation:pulse 1.5s infinite;
}

/* Label */
.time-label{
    font-size:18px;
    letter-spacing:2px;
    color:#0ff;
}

/* Animation */
@keyframes pulse{
  0%{ text-shadow:0 0 5px #0ff;}
  50%{ text-shadow:0 0 20px #0ff;}
  100%{ text-shadow:0 0 5px #0ff;}
}

/* Divider Line */
.divider{
    height:60px;
    width:2px;
    background:#0ff;
    margin:0 20px;
    box-shadow:0 0 10px #0ff;
}



    /* About */
    .about .video-box{
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 20px 45px rgba(45,95,148,.12)
    }

    .about h2{
        font-family: 'Times New Roman', Times, serif; 
    }

    .about p{
        font-family: Raleway;
        font-size: 15px;
        text-align: justify;
    }

    .about ul li {
        font-family: raleway;
        font-size: 15px;
        text-align: justify;
    }


   


      /* ------------------------------------------
   GRADIENT BORDER BOX
-------------------------------------------*/
.gradient-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:0;
    border:5px solid transparent;
    background:linear-gradient(#000,#000) padding-box,
               linear-gradient(45deg,var(--c1),var(--c2),var(--c3),var(--c4),var(--c5),var(--c6)) border-box;
    transition:0.4s;
    box-shadow:0 0 25px rgba(255,255,255,0.2);
}

.gradient-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    transition:0.4s;
}

/* Hover image dim + zoom */
.gradient-box:hover img{
    filter:brightness(40%);
    transform:scale(1.12);
}

/* ------------------------------------------
   HOVER CONTENT
-------------------------------------------*/
.hover-content{
    position:absolute;
    top:50%;
    left:50%;
    width:90%;
    transform:translate(-50%, -50%);
    opacity:0;
    transition:0.4s;
    background:rgba(0,0,0,0.65);
    padding:20px;
    border-radius:15px;
    backdrop-filter:blur(8px);
    text-align:center;
    box-shadow:0 0 20px #fff;
}



.hover-content h4{
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.hover-content p{
    color: #ddd;
    font-family: raleway;
    font-size: 14px;
}



.gradient-box:hover .hover-content{
    opacity:1;
}

/* ------------------------------------------
   GLOWING "+" ICON
-------------------------------------------*/
.plus-icon{
    font-size:55px;
    font-weight:900;
    color:#fff;
    margin-bottom:8px;
    text-shadow:0 0 15px #fff, 0 0 25px var(--c5);
    animation:plusGlow 1.4s infinite;
}

@keyframes plusGlow{
    0% {text-shadow:0 0 10px #fff;}
    50%{text-shadow:0 0 25px var(--c3), 0 0 45px var(--c6);}
    100%{text-shadow:0 0 10px #fff;}
}

/* ------------------------------------------
   UNIQUE READ MORE BUTTON



/* Read More Button */
.read-btn{
    background:#00803f;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    border:none;
    font-weight:600;
    letter-spacing:1px;
    transition:0.4s;
}
.read-btn:hover{
    background:#f3c400;
    color:#000;
    box-shadow:0 0 12px #f3c400;
}

/* Modal Styling */
.about-model{
    background:#ffffff;
    border-radius:25px;
    padding:25px;
    box-shadow:0 0 25px rgba(0,0,0,0.3);
    animation: popUp 0.4s ease;
}
@keyframes popUp{
    from{ transform:scale(0.7); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

/* Highlights */
.highlight {
    font-weight:700;
    color:#d94625;
}

.point-box{
    background:#f8f9fa;
    padding:0px 5px;
    border-left:5px solid #00803f;
    border-radius:8px;
    margin-bottom:8px;
}
.point-box p{
    font-size:0.8rem;
}
/* Glow animation for headings */
.glow-title{
    font-size:24px;
    font-weight:800;
    text-align:center;
    color:#00803f;
    /*animation: glow 1.5s infinite alternate;*/
}
@keyframes glow {
    from { text-shadow:0 0 5px #00803f; }
    to { text-shadow:0 0 15px #00c46b; }
}

       /* Button base */
    .btn-read {
      --pad-x: 28px;
      --pad-y: 14px;
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:.9rem;
      padding: var(--pad-y) var(--pad-x);
      border-radius:12px;
      font-weight:700;
      letter-spacing:.4px;
      text-decoration:none;
      color:#fff;
      background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border: 2px solid transparent;
      cursor:pointer;
      transition: transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease;
      outline: none;
      box-shadow: 0 6px 20px rgba(13,18,30,0.5), inset 0 -2px 6px rgba(0,0,0,0.4);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    /* Animated gradient border using pseudo-element */
    .btn-read::before{
      content:"";
      position:absolute;
      inset:-3px;
      z-index:-2;
      border-radius:14px;
      background: conic-gradient(from 120deg,
                  var(--c1),
                  var(--c2),
                  var(--c3),
                  var(--c4),
                  var(--c5),
                  var(--c6),
                  var(--c1));
      filter: blur(8px);
      opacity:.9;
      transform: rotate(0deg) scale(1);
      transition: opacity .25s ease, transform .6s cubic-bezier(.2,.9,.2,1);
      background-size: 300% 300%;
      animation: border-rotate 6s linear infinite;
    }

    /* inner lining for crisp border look */
    .btn-read::after{
      content:"";
      position:absolute;
      inset:2px;
      border-radius:10px;
      background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(255,255,255,0.02));
      z-index:-1;
    }

    @keyframes border-rotate {
      0%{ background-position: 0% 50%;}
      50%{ background-position: 100% 50%;}
      100%{ background-position: 0% 50%;}
    }

    /* Glow + hover effects */
    .btn-read:hover{
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 18px 50px rgba(45,95,148,0.18), 0 6px 40px rgba(233,50,50,0.08);
    }
    .btn-read:active{ transform: translateY(-1px) scale(.995); }

    /* + icon style (circle) */
    .btn-read .icon-wrap{
      display:inline-grid;
      place-items:center;
      width:40px;
      height:40px;
      border-radius:10px;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      box-shadow: inset 0 -4px 10px rgba(0,0,0,0.4), 0 6px 18px rgba(0,0,0,0.45);
      transition: transform .22s ease, box-shadow .22s ease;
      font-size:20px;
    }

    .btn-read .icon-plus{
      display:inline-block;
      transform: translateY(0);
      transition: transform .22s ease, text-shadow .22s ease;
      color:#fff;
      font-weight:800;
      text-shadow: 0 0 8px rgba(255,255,255,0.2);
    }

    /* On hover, icon glows and moves slightly */
    .btn-read:hover .icon-wrap{
      transform: translateY(-6px) rotate(-6deg);
      box-shadow: 0 10px 30px rgba(45,95,148,0.22), 0 0 30px rgba(243,196,0,0.08);
    }
    .btn-read:hover .icon-plus{
      text-shadow:
        0 0 8px rgba(255,255,255,0.6),
        0 0 18px rgba(243,196,0,0.55),
        0 0 28px rgba(234,131,36,0.35);
      transform: scale(1.06) translateY(-2px);
    }

    /* Text */
    .btn-read .txt {
      display:inline-block;
      transform: translateZ(0);
      transition: transform .22s cubic-bezier(.2,.9,.2,1);
    }
    .btn-read:hover .txt{ transform: translateX(6px); }

    /* Small animated underline */
    .btn-read .txt::after{
      content:"";
      display:block;
      margin-top:6px;
      width:0%;
      height:3px;
      border-radius:2px;
      background: linear-gradient(90deg,var(--c1),var(--c2),var(--c3),var(--c4),var(--c5),var(--c6));
      transition: width .28s cubic-bezier(.2,.9,.2,1);
      box-shadow: 0 6px 18px rgba(45,95,148,0.18);
    }
    .btn-read:hover .txt::after{ width:70%; }

    /* Focus accessibility */
    .btn-read:focus{
      box-shadow: 0 0 0 4px rgba(45,95,148,0.12);
      outline:none;
    }

    /* Ripple effect element */
    .ripple {
      position:absolute;
      border-radius:50%;
      transform: scale(0);
      background: rgba(255,255,255,0.12);
      pointer-events: none;
      animation: ripple-effect 700ms ease-out;
      mix-blend-mode: screen;
    }
    @keyframes ripple-effect {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* small responsive tweaks */
    @media (max-width: 420px){
      .btn-read{ --pad-x:18px; --pad-y:12px; gap:.6rem; border-radius:10px; }
      .btn-read .icon-wrap{ width:36px; height:36px; }
    }




/*-------------------------------------------*/


 .gallery-box {
      border: 4px solid transparent;
      border-radius: 18px;
      padding: 5px;
      background: linear-gradient(45deg,
        #d94625, #e74f5c, #ea8324, #00803f, #f3c400, #2d5f94);
      background-size: 400% 400%;
      animation: gradientMove 6s ease infinite;
      transition: transform .4s ease;
      cursor: pointer;
    }

    .gallery-box:hover {
      transform: scale(1.05);
    }

    .gallery-img {
      border-radius: 14px;
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: .4s;
    }

    .gallery-box:hover .gallery-img {
      filter: brightness(1.1) drop-shadow(0 0 15px #fff);
    }

    /* Gradient Animation */
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }   



/*----------- Media Reach Start ---------------*/


     /* Card Container */
    .reach-card {
      position: relative;
      padding: 35px 25px;
      border-radius: 22px;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.6);
      border: 2px solid rgba(255,255,255,0.5);
      transition: 0.4s;
      text-align: center;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      animation: fadeUp 1.2s ease forwards;
      opacity: 0;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Glow Ring Animation */
    .reach-card::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: linear-gradient(45deg,#d94625,#e74f5c,#ea8324,#00803f,#f3c400,#2d5f94);
      top: -60px;
      left: -60px;
      filter: blur(35px);
      transition: 0.5s;
    }

    .reach-card:hover::before {
      transform: scale(1.4);
      top: -80px;
      left: -80px;
    }

    /* Icon Circle */
    .reach-icon {
      width: 95px;
      height: 95px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 40px;
      color: #d94625;
      transition: 0.4s;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .reach-card:hover .reach-icon {
      transform: scale(1.18) rotate(8deg);
      box-shadow: 0 0 25px rgba(255,255,255,0.9);
      color: #00803f;
    }

    .reach-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: #000;
      font-family: 'Times New Roman', Times, serif;
    }

    .reach-text {
      font-size: 0.95rem;
      color: #444;
    }

    .reach-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }


/*----------Media Reach End ------------*/





/*--------------EVENT-Venue-START--------------------*/

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 800;
    position: relative;
}
.section-title .testimonials-details::after {
    content: "";
    width: 90px;
    height: 4px;
    position: absolute;
    background: linear-gradient(90deg,#ff4c4c,#ff9100,#ffd700);
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* Important Glow Content Box */
.glow-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(255,76,76,0.15);
    border-left: 5px solid #ff4c4c;
    animation: glowPulse 2.8s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(255, 76, 76, 0.3); }
    50% { box-shadow: 0 0 35px rgba(255, 150, 76, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 76, 76, 0.3); }
}

/* Detail Items */
.detail-item {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.detail-item i {
    color: #ff4c4c;
    font-size: 20px;
    margin-right: 8px;
}

/* Right image box */
.image-box-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    animation: floatImg 4s infinite ease-in-out;
    margin-bottom: -5rem;
}

@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Animated Border Glow */
.glow-border {
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(140deg,#ff4c4c,#ea8324,#f3c400,#ff4c4c);
    background-size: 300% 300%;
    animation: borderGlow 6s infinite linear;
}
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.image-box-wrapper img {
    width: 100%;
    border-radius: 17px;
    transition: .5s;
}
.image-box-wrapper:hover img {
    transform: scale(1.1);
    filter: brightness(1.18);
}

/* Shine hover */
.image-box-wrapper::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,rgba(255,255,255,0.2),rgba(255,255,255,0));
    transform: rotate(25deg);
    transition: .7s;
}
.image-box-wrapper:hover::after {
    top: -15%;
    left: -15%;
}

/* Highlight Date Tag */
.date-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 7px 15px;
    background: rgba(0,0,0,0.6);
    border: 2px solid #ffd700;
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
    text-shadow: 0 0 5px #000;
}

.icons{
  color:#ff4c4c;
}




/*-----------------Testimonials--START---------------------*/
    /* Section title */
.section-title {
    font-size: 32px;
    font-weight: 800;
    position: relative;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#ff4c4c,#ff9100,#ffd700);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    border-radius: 8px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 76, 76, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 76, 76, 0.25);
    border-color: #ff4c4c;
}

/* Neon Bottom Border */
.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg,#ff4c4c,#ff9100,#ffd700);
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(255, 76, 76, 0.5);
    transition: .4s;
    opacity: 0;
}
.testimonial-card:hover::after {
    opacity: 1;
}

/* Profile Image */
.testimonial-img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: .4s;
    border: 3px solid #ff4c4c;
}
.testimonial-card:hover .testimonial-img {
    transform: scale(1.1);
}

/* Star Rating */
.stars i {
    color: #ffd700;
    margin: 0 2px;
    font-size: 16px;
}

/* Name */
.client-name {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

/* Social Icons */
.social-icons a {
    font-size: 18px;
    margin: 0 6px;
    color: #ff4c4c;
    transition: .3s;
    cursor: pointer;
}
.social-icons a:hover {
    transform: scale(1.3);
    color: #000;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.Top-Box{
  margin-top: 1rem;
}
  
/*-----------------Testimonials--END---------------------*/


/*-------------Event - Venue - End ------------------*/


    /* Chatbox*/


    /* Floating Chat Button */
    #chatBtn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: #00803f;
        color: white;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: none;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 5px 12px rgba(0,0,0,0.3);
        cursor: pointer;
        z-index: 9999;
        transition: .3s;
    }

    #chatBtn:hover {
        transform: scale(1.1);
        background: #f3c400;
        color: #000;
    }

    /* Chat Window */
    #chatWindow {
        position: fixed;
        bottom: 95px;
        right: 25px;
        width: 320px;
        height: 420px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0px 5px 20px rgba(0,0,0,0.25);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 9999;
        animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Chat Header */
    .chat-header {
        background: linear-gradient(90deg, #00803f, #f3c400, #2d5f94);
        color: white;
        padding: 12px 15px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Chat Body */
    .chat-body {
        padding: 12px;
        height: 100%;
        overflow-y: auto;
        background: #f5f5f5;
    }

    .chat-message {
        margin-bottom: 12px;
        max-width: 80%;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 14px;
    }

    .user-msg {
        background: #00803f;
        color: #fff;
        margin-left: auto;
    }

    .bot-msg {
        background: #e9e9e9;
        color: #333;
        margin-right: auto;
    }

    /* Input Area */
    .chat-input-area {
        padding: 10px;
        background: #fff;
        border-top: 1px solid #ddd;
    }
    /* Responsive tweaks */
    @media(min-width:992px){.nav-center{max-width:720px}}

    /* Contact Section Start */
.contact-page {
  background: linear-gradient(135deg, #000000, #111111, #1a1a1a);
  padding: 80px 0;
  color: #fff;
}

/* Section Title */
.section-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff4c44;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title:after {
  content: "";
  width: 150px;
  height: 4px;
  background: #ff4c44;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 5px;
}

/* Info Box */
.info-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
     padding: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px #ff4c44;
  border-color: #ff4c44;
}

/* Info Icons */
.info-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.4s;
}
.info-box:hover .info-icon {
  background: #ff4c44;
  box-shadow: 0 0 20px #ff4c44;
}

/* Glowing Form Box */
.form-box {
  background: rgba(255,255,255,0.06);
  padding: 35px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.4s;
}
.form-box:hover {
  box-shadow: 0 0 25px #ff4c44;
}

/* Input Styles */
.form-box .form-control {
  /*background: rgba(255,255,255,0.08);*/
  border: 1px solid rgba(255,255,255,0.2);
  /*color: #fff;*/
  /*height: 52px;*/
  border-radius: 12px;
  transition: 0.4s;
}
.form-control:focus {
  border-color: #ff4c44;
  box-shadow: 0 0 12px #ff4c44;
}

/* Textarea */
.textarea.form-control {
  height: 120px;
}

/* Button */
.glow-btn {
  background: #ff4c44;
  border: none;
  padding: 14px;
  color: #fff;
  font-size: 18px;
  border-radius: 12px;
  width: 100%;
  transition: 0.4s;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff4c44;
}

/* Map */
.map-box {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
  transition: 0.4s;
}
.map-box:hover {
  box-shadow: 0 0 30px #ff4c44;
  transform: scale(1.02);
}
 /* Contact Section End */

/* FOOTER WRAPPER */
.footer-sec {
    background: #0a0f1f;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Glow */
.footer-sec::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #00eaff;
    top: -80px;
    left: -80px;
    filter: blur(200px);
    opacity: 0.4;
    animation: glow 6s infinite alternate;
}
@keyframes glow {
    from { transform: translate(0,0); }
    to { transform: translate(60px,60px); }
}

/* Titles */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #00eaff;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

/* Footer Links */
.footer-links a {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    color: #cfd5f3;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00eaff;
    padding-left: 6px;
}

/* Social Icons */
.social-marquee {
    white-space: nowrap;
    overflow: hidden;
    margin: 25px 0;
}

.social-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px;
    font-size: 22px;
    border-radius: 50%;
    background: #141b2d;
    border: 2px solid transparent;
    color: #00eaff;
    transition: 0.4s;
}

.social-icon:hover {
    background: #00eaff;
    color: #0a0f1f;
    box-shadow: 0 0 20px #00eaff;
    transform: translateY(-6px) scale(1.1);
    border-color: #00eaff;
}

/* Subscribe */
.subscribe-box input {
    border-radius: 30px;
    padding: 12px 18px;
    border: 2px solid #00eaff;
    background: transparent;
    color: #fff;
}

.subscribe-box input::placeholder {
    color: #cfd5f3;
}

.subscribe-box button {
    margin-top: 12px;
    width: 100%;
    border-radius: 30px;
    background: #00eaff;
    border: none;
    font-weight: 600;
    padding: 12px;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: #fff;
    color: #00eaff;
    box-shadow: 0 0 20px #00eaff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 15px;
    color: #c9c9c9;
    border-top: 1px solid #1a2338;
}
/* Glowing Button */
.btn-glow {
    background: linear-gradient(45deg, #ff4c44, #ff914d);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255,76,68,0.6);
    transition: 0.3s;
}
.btn-glow:hover {
    box-shadow: 0 0 25px rgba(255,76,68,1);
    transform: translateY(-3px);
}

/* Modal Glow Border & Animation */
.modal-content {
    border-radius: 20px;
    background: white;
    color: black;
    border: 2px solid #ff4c44;
    box-shadow: 0 0 30px rgba(255,76,68,0.6);
    animation: popUp 0.6s ease;
}

@keyframes popUp {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Input Fields */
.modal-content .form-control,
.modal-content .form-select {
    /*background: #1a1a1a;*/
    /*color: #fff;*/
    border: 1px solid #ff4c44;
    /*padding: 12px;*/
    border-radius: 12px;
}
.modal-content .form-control:focus,
.modal-content .form-select:focus {
    box-shadow: 0 0 15px #ff4c44;
    border-color: #ff4c44;
}

/* Submit Button */
.btn-submit {
    background: #ff4c44;
    border: none;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,76,68,0.6);
    transition: 0.3s;
}
.btn-submit:hover {
    box-shadow: 0 0 25px rgba(255,76,68,1);
    transform: translateY(-3px);
}

.contact-form{
    
}

/* Thumbnail Container */
.thumb-card {
  position: relative;
  width: 100%;
  max-width:100%
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  margin: auto;
  transition: transform .35s ease;
}

/* Glow Border */
/*.thumb-card:hover {*/
/*  transform: scale(1.06);*/
/*  box-shadow: 0 0 25px rgba(255, 90, 90, .6), */
/*              0 0 55px rgba(255, 140, 60, .5);*/
/*}*/

/* Image */
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*transition: transform .4s ease;*/
  display: block;
  border-radius: 18px;
}

/* Zoom effect */
.thumb-card:hover img,
.thumb-hover img {
  /*transform: scale(1.18);*/
}


@keyframes shineMove {
  from { left: -120%; }
  to { left: 120%; }
}

/* Mobile tap glow */
@media (max-width: 576px) {
  .thumb-card {
    max-width: 180px;
  }
}

    