this my css fix it in and remove the old one *{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
}


.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
 
#col{
  flex-basis: 25%;
    padding: 10px;   
}

#col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
 
.col{
    flex-basis: 25%;
    padding: 10px;
}



.con {
    background: var(--white-color);
   margin-bottom: -20px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.logo{
    width: 80px;
    margin-bottom: 10px;
}

.email-id{
    width: fit-content;
    border-bottom: 2px solid #ccc;
    margin: 20px 0;
}

ul li{
    list-style: none;
    margin-bottom: 12px;
}

ul li a{
    text-decoration: none;
    color: #fff;
} 







.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover; /* fills screen */
    object-position: center bottom; /* 👈 THIS shows more of the bottom */

    z-index: 1;
}

/* DARK OVERLAY */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* THIS CONTROLS DARKNESS */
    background: rgba(0, 0, 0, 0.6); /* adjust 0.6 → 0.8 for darker */

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
    color: #fff;
    text-align: center;
}

.slide {
    display: none;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: block;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slide-text {
    font-size: 1.2rem;
}










/* =========================
   SERVICE SECTION WRAPPER
========================= */
.service-section {
    width: 100%;
    padding: 60px 15px;
    background: #0f0a1a;
    color: #fff;
    box-sizing: border-box;
}

/* =========================
   GRID LAYOUT (RESPONSIVE)
========================= */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    align-items: stretch;
    box-sizing: border-box;
}

/* =========================
   CARD DESIGN (NO SHRINKING)
========================= */
.card {
    background: linear-gradient(145deg, #2b0a4d, #1a062f);
    color: white;

    border-radius: 16px;
    padding: 22px;

    display: flex;
    flex-direction: column;

    width: 100% !important;
    height: auto;
    min-height: 420px;

    box-sizing: border-box;
    overflow: hidden;

    border: 2px solid rgba(255, 215, 0, 0.25);

    transition: 0.3s ease;
}

/* hover effect */
.card:hover {
    transform: translateY(-8px);
    border-color: gold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* =========================
   TITLE
========================= */
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: gold;
    word-break: break-word;
}

/* =========================
   PRICE
========================= */
.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

/* =========================
   LIST CONTENT
========================= */
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 8px;

    flex-grow: 1;
}

.card ul li {
    font-size: 1rem;
    line-height: 1.5;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* =========================
   NOTE TEXT
========================= */
.note {
    margin-top: 25px;
    text-align: center;
    font-style: italic;
    color: #ccc;
    font-size: 0.95rem;
}
.bonus{
    color: gold;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {

    .service-cards {
        grid-template-columns: 1fr !important;
        padding: 10px;
        gap: 18px;
    }

    .card {
        min-height: auto !important;
        padding: 20px;
    }

    .card ul li {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* =========================
   SMALL PHONE FIX (375px)
========================= */
@media (max-width: 375px) {

    .service-cards {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 15px;
    }

    .card {
        padding: 18px;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .card ul li {
        font-size: 0.95rem;
    }
}












.ceo-message {
    margin-top: 20px;
}

.ceo-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
}

.ceo-message p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.ceo-list {
    margin: 10px 0 15px 20px;
}

.ceo-list li {
    margin-bottom: 8px;
}

.highlight {
    margin-top: 10px;
    font-weight: bold;
}

.closing {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #000;
}













.social-icons .fab{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px; 
  color: darkorange;
  background: #fff;
  margin-right: 15px; 
  cursor: pointer;
}

.social-icons .fab:hover{
    background-color: darkorange;
    color: blueviolet;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 2px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
}

.copyright img {
    margin-bottom: -15px;
    width: 40px;
}

.copyrights{
    text-align: center;
}

.copyrights img {
    margin-bottom: -13px;
    width: 40px;
}

.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
        flex-basis: 100%;
        padding: 10px;
    }
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }
}

:root {
    /* Colors  */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;
    --darkorage-color: darkorange;
    --blueviolet-color:blueviolet;

    /* Font size  */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font Weight  */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border Radius  */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width  */
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

/* styline the whole site  */
ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button {
  cursor: pointer; 
  border: none; 
  background: none;
}


.logo{
width: 90px;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title{
  text-align: center; 
  padding: 60px 0 100px;
  text-transform: uppercase; 
  font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 150px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

video{
width: 100%;
}




/* Nav styline  */
header{
    position: fixed;
    width: 100%;
    z-index: 5;
    height: 90px;
    top: 0;
    background: linear-gradient(to right, white,white,blueviolet,
    blueviolet,blueviolet,blueviolet,blueviolet,blueviolet,darkorange);
}

.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu{
    display: flex;
    gap: 20px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
}
.navbar .nav-menu .nav-links {
    margin-left: 20px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
}

header .navbar{
    display: flex;
    padding: -1px;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
    color: var(--blueviolet-color);
    background: var(--secondary-color);
    
}

.navbar .nav-menu .nav-links:hover{
    color: var(--blueviolet-color);
    
}

.navbar .nav-menu .div{
    width: 100px;
    height: 20px;
    border-radius: 50px;
    transition: 0.3s ease;
}


.navbar .nav-menu .div:hover{
    background: var(--secondary-color);
}

.navbar #menu-close-button, #menu-open-button {
        display: none;
    }


/* Hero section  */
.hero-sections{
    min-height: 70vh;
    background: blueviolet;
    
}

.hero-sections .section-content {
    display: flex;
    align-items: center;
    color: var(--white-color);
    justify-content: space-between;
    min-height: 100vh;
}



.hero-section{
    min-height: 100vh;
    background: var(--blueviolet-color);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    color: var(--white-color);
    justify-content: space-between;
    min-height: 100vh;
}

.hero-sections .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family:"Miniver", sans-serif;
}
.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family:"Miniver", sans-serif;
}


.hero-sections .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}
.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}


.hero-sections .hero-details .description {
 max-width: 70%;
 margin: 24px 0 40px;
 font-size: var(--font-size-m);
}
.hero-section .hero-details .description {
 max-width: 70%;
 margin: 24px 0 40px;
 font-size: var(--font-size-m);
}


.hero-sections .hero-details .buttons {
    display: flex;
    gap: 23px;
}
.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-sections .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--blueviolet-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}
.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--blueviolet-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-sections .hero-details .button:hover,
.hero-sections .hero-details .contact-us{
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}
.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us{
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-sections .hero-details .contact-us:hover {
     color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}
.hero-section .hero-details .contact-us:hover {
     color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.hero-sections .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}
.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

/* About section  */

.about-section{
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details #text{
    line-height: 30px;
    margin: 30px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .about-details{
    max-width: 50%;
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list .social-link:hover{
    color: var(--blueviolet-color);
    font-size: var(--font-size-l);
    transition: 0.2ss ease;
}

.about-section .social-link-list .social-link{
    color: var(--secondary-color);
}

/* Team styline  */

.intro{
   height: 75px;
   width: 250px;
   padding: 6px;
   margin-top: 175px;
   border-radius: 35px;
   box-sizing: border-box;
   position: absolute;
   background: rgb(27,27,27,0.4);
   color: #ffffff;
   transition: 0.5s;
}

.intro:hover{
   background: rgba(196, 2, 255, 0.44);
    height: 180px;
    width: 250px;
   margin-top: 150px;

}

.intro h1{
font-size: 20px;
text-align: center;
}

.intro p{
   font-size: 16px;
   visibility: hidden;
   opacity: 0;
}


.intro h3 {
    background: darkorange;
    border-radius: 30px;
    width: 150px;
    margin-top: 3px;
    font-size: 15px;
    color: var(--blueviolet-color);
}

.intro h2 {
   
    border-radius: 30px;
    font-size: 18px;
    color: lightgreen;
    margin-top: -13px;
}

.intro .social-link{
    font-size: 25px;
    color: #fff;
    justify-content: space-between;

}

.social1{
   margin-right: 20px;
}

.social2{
   margin-right: 20px;
}

.social3{
   margin-right: 20px;
}



.intro .social-link:hover{
    color: var(--darkorage-color);
}

.intro:hover{
    visibility: visible;
}

.testimonials:hover{
   cursor: pointer;
}



.testimonials:hover h3{
   visibility: hidden;
}
.testimonials:hover p{
   opacity: 1;
   visibility: visible;
   
}

.testimonials:hover img{
   transform: scale(1.0) rotate(-3deg);
   background: #f3961c;
}

section .h1{
   font-size: 50px;
   color: bisque;
}



@media screen and (max-width:1000px){
   .introo{
      height: 70px;
      width: 250px;
   }
   
   .introo h1{
   font-size: 25px;
   }
   
   .introo p{
      font-size: 14px;
   }
   
   .introo button{
      font-size: 14px;
   }
   
   .introo a{
      margin-top: -8px;
      margin-left: -40px;
   }
   section .h1{
      font-size: 40px;
   }

   .social1{
   margin-right: 30px;
}

.social2{
   margin-right: 30px;
}

.social3{
   margin-right: 30px;
}
}

@media(max-width:700px){
   
   .introo{
      height: 70px;
      width: 180px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: 10px;
      position: absolute;
      margin-top: -10px;
   }
   
   .introo button{
      font-size: 9px;
   }
}


@media screen and (max-width: 900px) {

   
   .introo{
      height: 70px;
      width: 176px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: 11px;
      position: absolute;
      margin-top: -20px;
   }
   
   .introo button{
      font-size: 9px;
   }
   
   .introo a{
      margin-top: -3px;
      margin-left: -25px;
   }
   section .h1{
      font-size: 25px;
   }
    
}

@media(max-width:600px){
 
   
   .introo{
      height: 70px;
      width: 176px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: px;
      position: absolute;
      margin-top: -20px;
   }
   
   .introo button{
      font-size: 9px;
   }
   
   .introo a{
      margin-top: -3px;
      margin-left: -25px;
   }
   section .h1{
      font-size: 25px;
   }
}

/* Testimonials section  */


.testimonialss-section{
    padding: 50px 0 100px;
    background: linear-gradient(rgb(27,27,27,0.3),rgb(27,27,27,0.3)), url(../images/flower.jpg); 
    background-size: cover;
    background-attachment: fixed;
}

.testimonialss-section


.testimonialss-section .slide-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
    height: 300px;
    border-radius: 40px;
}

.testimonialss-section .testimonials{
    user-select: none;
    display: flex;
    padding: 35px;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.testimonialss-section .testimonials .user-image{
    width: 250px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 35px;
}

.testimonialss-section .testimonials .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonialss-section .testimonials .feadback {
    line-height: 25px;
}

.testimonialss-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonialss-section .swiper-slide-button{
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonialss-section .swiper-slide-button:hover {
    color: var(--blueviolet-color);
}

/* Testimonials styline  */
.testimonials-section{
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section .slide-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}

.testimonials-section .testimonial{
    user-select: none;
    display: flex;
    padding: 35px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonials-section .testimonial .user-image{
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feadback {
    line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button{
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: var(--blueviolet-color);
}

.navbar-expand-lg{
    background: #f3961c;
}

/* Footer section styline  */
.footer-section{
    padding: 20px 0;
    background: linear-gradient(to right,var(--blueviolet-color),var(--blueviolet-color),
    var(--blueviolet-color),var(--blueviolet-color),var(--blueviolet-color),var(--blueviolet-color),
    var(--blueviolet-color),var(--blueviolet-color), darkorange);
}

.footer-section .social-link-list{
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link{
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover{
    color: var(--darkorage-color);
}

.footer-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition:  0.2s ease;
}


.separator{
font-size: 50px;
}

.footer-section .policy-text .separator{
    margin: 0 5px;
    color: var(--white-color);
}

#office {
        margin-left: 150px;
    }
    #massage {
        margin-left: 100px;
    }



    /* Dropdown Button */
.dropbtn {
  color: white;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  margin-top: 10px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-contents {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  margin-top: 2px;
  margin-left: -20px;
  min-width: 140px;
  border-radius: 15px;
  box-shadow: 0px 8px 16px 0px blueviolet;
  z-index: 1;
  transition: 0.3 ease;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-contents a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}
.dropdown-contents a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropdown-contents {display: block;}



/* Resposive media query code for max with 900px  */
@media screen and (max-width: 900px) {
    :root{
     --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    }

    .dropdown-content .navs:hover{
    background: none;
}

    .dropbtn{
        color: var(--white-color);
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .dropdown-content {
      margin-top: -30px;
      
}

    body.show-mobile-menu header::before{
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,0.2);
    }

    .navbar #menu-close-button, #menu-open-button {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button{
        position: absolute;
        right: 30px;
        top: 30px;
        color: var(--white-color);
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu{
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--blueviolet-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link{
        color: var(--white-color);
        display: block;
        margin-top: -10px;
        font-size: var(--font-size-l);
}

.hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 300px 30px 20px;
    flex-direction: column-reverse;
    justify-content: center;
    background: var(--white-color);
}
.hero-sections .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
}

.hero-section .hero-details :is(.subtitle, .description), 
.about-section .about-details
{
    max-width: 100%;
}
.hero-sections .hero-details :is(.subtitle, .description), 
.about-sections .about-details
{
    max-width: 100%;
}

.hero-section .hero-details .button{
    justify-content: center;
    color: blueviolet;
}
.hero-section .hero-details .button{
    justify-content: center;
}

.hero-section .hero-details{
color: blueviolet;
}

.hero-section .hero-details .description{
    color: black;
}

.hero-sections .hero-details .buttons{
    justify-content: center;
}

.hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
}
.hero-sections .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
}



#radio img{
margin-left: -50px;
max-width: 270px;
}



#play{
    margin-left: 360px;
    margin-bottom: -200px;
}

#play img{
   margin-right: 15px;
}

.about-section .section-content{
    gap: 70px;
    flex-direction: column-reverse;
}

    .about-section .about-image-wrapper .about-image{
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .hero-section .buttons .button:hover{
        color: crimson;
        border: 1px solid blueviolet;
        background: transparent;
    }

    #office {
        margin-left: 150px;
    }
    #massage {
        margin-left: 150px;
    }

    
#radio p span {
  font-size: 14px;
  color: blueviolet;
}



}
.live{
  color: gold; 
  font-size: 20px;
 
}

.adio{
    color: chartreuse; 
  font-size: 20px;
  padding-left: 6px; 
}


/* Resposive media query code for max with 640px  */
@media screen and (max-width: 640px){

    .testimonials-section .slide-wrapper {
        margin: 0 0 30px;
    }

    .testimonials-section .swiper-slide-button {
        display: none;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }
}


.text {
    position: absolute;
    padding-left: 70px;
    padding-top: 10px;
    text-align: center;
}

.under{
       width: 37%;
    height: 4px;
    background: #767676;
    border-radius: 3px;
    position: relative;
    top: 30px;
    left: 70px;
    overflow: hidden;
}

.under span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}


#radio img{

 width: 330px;
}



#play{
    background: rgba(255, 255, 255, .3);
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    right: 115px;
    top: -10px;
    border: 3px solid gold;
    animation: play 2s linear infinite;

}



#play img{
    width: 20px;
    margin-left: 14px;
    margin-top: -10px;
    border-radius: 50%;
     border: 3px solid darkorange;
    animation: play 1s linear infinite;
}


@keyframes play {
    0% {
        transform: scale(.5);
        opacity: 0;
    }
    50% {
        position: 1;
    }
    100% {
        transform: scale(1.5);
    }
}


    .wrapper{
    max-width: 100%;
}

.body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10px;
}

.wrapper .gallery{
display: flex;
flex-wrap: wrap; 
}

.gallery span{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.gallery .image{
    width: calc(100%/4);
    padding: 5px;
}

.gallery .image img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.gallery .image:hover img{
transform: scale(1.1);
}

@media (max-width: 1000px){
  .gallery .image{
    width: calc(100%/3);
    
}  
}

@media (max-width: 600px){
  .gallery .image{
    width: calc(100%/2);
    padding: 4px;
}  
.wrapper{
    margin-top: 80px;
}
}

.preview-box{
    position: fixed;
    max-width: 700px;
    width: 100%;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 0 5px 5px 5px;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

.preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
}

.preview-box .details{
    display: flex;
    align-items: center;
    padding: 12px 15px 12px 10px;
    justify-content: space-between;
}

.details .title{
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.details .title p{
    margin: 0 5px;
}

.details .title p.current-img{
    font-weight: 500;
}
.img-box .slide{
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    width: 60px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.img-box .slide.prev{
    left: #fff;
}
.img-box .slide.next{
    right: 0;
}

.preview-box .details .icon{
    color: #007bff;
    cursor: pointer;
    font-size: 20px;
}

.preview-box .img-box{
display: flex;
width: 100%;
}

.preview-box .img-box img{
    width: 100%;
    border-radius: 0 0 3px 3px;
}

.shadow{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0,0,0,0.4);
}
















section.sec{
   display: flex;
  justify-content: center; 
  align-items: center;
  background: linear-gradient(rgb(27,27,27,0.3),rgb(27,27,27,0.3)), url(../images/flower.jpg);
  background-attachment: fixed;
  background-size: cover;
}

.sect-t{
  text-align: center; 
  padding: 60px 0 100px;
  text-transform: uppercase; 
  font-size: var(--font-size-xl);
}

.sect-t::after{
    content: "";
    width: 150px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}


.conts{
   display: flex;
   justify-content: center;
   text-align: center;
   }


.introo{
   height: 70px;
   width: 250px;
   padding: 6px;
   border-radius: 40px;
   box-sizing: border-box;
   margin-top: -74px;
   position: absolute;
   background: rgb(27,27,27,0.4);
   color: #ffffff;
   transition: .5s;
}

.introo h1{
font-size: 20px;
text-align: center;
}

.introo p{
   font-size: 16px;
   visibility: hidden;
   opacity: 0;
}

.introo span{
   font-weight: bold;
   color: chartreuse;
}

.introo h3 {
    background: darkorange;
    border-radius: 30px;
    width: 150px;
    font-size: 15px;
    color: var(--blueviolet-color);
}

.introo .social-link{
    font-size: 25px;
    color: #fff;
    justify-content: space-between;

}

.social1{
   margin-right: 20px;
}

.social2{
   margin-right: 20px;
}

.social3{
   margin-right: 20px;
}



.introo .social-link:hover{
    color: var(--darkorage-color);
}

.br:hover{
visibility: visible;
}

section .h1{
   font-size: 50px;
   color: bisque;
}



@media screen and (max-width:1000px){

   .introo{
      height: 70px;
      width: 250px;
   }
   
   .introo h1{
   font-size: 25px;
   }
   
   .introo p{
      font-size: 14px;
   }
   
   .introo button{
      font-size: 14px;
   }
  
   .introo a{
      margin-top: -8px;
      margin-left: -40px;
   }
   section .h1{
      font-size: 40px;
   }

   .social1{
   margin-right: 30px;
}

.social2{
   margin-right: 30px;
}

.social3{
   margin-right: 30px;
}
}

@media(max-width:700px){

   
   .introo{
      height: 70px;
      width: 180px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: 10px;
      position: absolute;
      margin-top: -10px;
   }
   
   .introo button{
      font-size: 9px;
   }
 
   .introo a{
      margin-top: -3px;
      margin-left: -25px;
   }
  
   section .h1{
      font-size: 30px;
   }
}


@media screen and (max-width: 900px) {

   .introo{
      height: 70px;
      width: 176px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: 11px;
      position: absolute;
      margin-top: -20px;
   }
   
   .introo button{
      font-size: 9px;
   }

   .introo a{
      margin-top: -3px;
      margin-left: -25px;
   }
   section .h1{
      font-size: 25px;
   }
    
}

@media(max-width:600px){

   
   .introo{
      height: 70px;
      width: 176px;
   }
   
   .introo h1{
   font-size: 15px;
   }
   
   .introo p{
      font-size: px;
      position: absolute;
      margin-top: -20px;
   }
   
   .introo button{
      font-size: 9px;
   }

   .introo a{
      margin-top: -3px;
      margin-left: -25px;
   }
   section .h1{
      font-size: 25px;
   }
}

/* .player {
aspect-ratio: 16 / 9 ;
width: 100%;
} */
video {
aspect-ratio: 16 / 9 ;
width: 100%;
max-height: 100%;
margin-top: 90px;
background-size: cover;
}

.go-live{
    border: 20px solid blueviolet;
}

.cons{
    background: var(--light-pink-color) ;
    margin-top: -20px;
    height: 130px;
}

.conss{
    background: var(--light-pink-color) ;
    height: 130px;
}

 /* Service styline  */
 .service-section{
    background: var(--white-color);
 }
 .service-section .service-list{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
 }

 .service-section .service-list .service-item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border: 1px solid blueviolet;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
    height: 200px;
    background: transparent;
    border-radius: 20px;
    box-shadow: 3px 5px darkorange;
    transition: 0.2s ease;
 }

  .sponsors img{
 align-items: center;
 width: 150px;
 margin-left: 70px;
 margin-top: -60px;
 }


 .service-section .service-list .service-item:hover{
    background: blueviolet;
    border-radius: 35px;
    color: #fff;
 }

 .service-section .service-list .service-item .text:hover{
    color: #fff;
 }

 .service-section .service-list .service-item .service-image{
    max-width: 83%;
    border-radius: 50px;
    aspect-ratio: 1;
    position: relative;
    margin-top: -48px;
    object-fit: contain;
 }

  .service-section .service-list .service-item .service-title{
    margin: 50px 0;
    text-shadow: 1px 1px chartreuse;
    color: chocolate;
    position: absolute;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
  }

  .service-section .service-list .service-item .text{
    position: absolute;
    width: 360px;
    color: darkorange;
    margin-left: -70px;
    margin-top: 90px;
    font-size: var(--font-size-m);
  }

  .service-section h4{
    color: #767676;
    position: absolute;
    margin-top: -70px;
    margin-left: 550px;
  }

 /* Responsive media query code for max width 1024px  */
@media screen and (max-width: 1024px) {
    .service-section .service-list .service-item{
    width: calc(100% / 1 - 110px);
    } 

     .service-section h4{
    margin-left: 30px;
  }

}
 /* Responsive media query code for max width 900px  */
@media screen and (max-width: 900px) {
    .service-section .service-list .service-item{
    width: calc(100% / 2 - 110px);
    } 

    .sponsors{
        margin-left: -150px;
    }

     .sponsors img{
 align-items: center;
 width: 110px;
 margin-left: 139px;
 margin-top: -50px;
 }
}

 /* Responsive media query code for max width 965px  */
@media screen and (max-width: 965px) {
    .service-section .service-list .service-item{
    width: calc(90% / 3 - 90px);
    } 
}

 /* Responsive media query code for max width 965px  */
@media screen and (max-width: 1024px) {
    .service-section .service-list .service-item{
    width: calc(90% / 2 - 100px);
    } 

     .service-section .service-list .service-item .service-title{
    margin: 183px 0;
  }

  .service-section .service-list .service-item .text{
    margin-top: 200px;
  }
}

 /* Responsive media query code for max width 965px  */
@media screen and (max-width: 400px) {
    .service-section .service-list .service-item{
    width: calc(90% / 1 - 100px);
    height: 230px;
    } 
    .service-section .service-list img{
        padding-top: 25px;
    }

     .service-section .service-list .service-item .service-title{
    margin: 118px 0;

  }

  .service-section .service-list .service-item .text{
    margin-top: 140px;
    font-size: 15px;
    width: 270px;
    text-shadow: none;
  }
}

.contact-section {
    background: linear-gradient(135deg, #1a1a1a, #2b0a4d);
    padding: 80px 20px;
    color: #fff;
}

/* GRID LAYOUT */
.contact-section .section-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 6px; /* 🔥 tighter spacing between Quick Links & Sponsors */
    max-width: 1100px;
    margin: auto;
    align-items: start;
}

/* CARD STYLE (clean + consistent) */
.contact-section .col,
.contact-section
.contact-section .contact-info-list {
    background: rgba(255, 255, 255, 0.06);
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* HEADINGS */
.contact-section h3 {
    color: gold;
    margin-bottom: 10px;
    font-size: 18px;
    border-left: 4px solid gold;
    padding-left: 10px;
}

/* CONTACT ITEMS */
.contact-info-list i.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-style: normal;
    color: #ddd;
}

.contact-info-list i.contact-info i {
    color: gold;
    margin-top: 4px;
}

/* LINKS */
.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section ul li {
    margin-bottom: 8px;
}

.contact-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-section ul li a:hover {
    color: gold;
    padding-left: 5px;
}



/* Wrapper keeps image tight under title */
.sponsor-content {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

/* Logo size */
.sponsor-img {
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .contact-section .section-content {
        grid-template-columns: 1fr;
    }
}

.service-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 30px;
}

.service-social .social-link {
    font-size: 20px;
    color: #2b0a4d;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.service-social .social-link:hover {
    background: gold;
    color: #000;
    transform: translateY(-3px);
}

.copyright-text {
    display: flex;
    align-items: center;
}

.copyright-text img {
    width: 40px;
    height: auto;
}
























/* WRAPPER */
.hero-radio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* TITLE */
.radio-title {
    font-size: 22px;
    color: gold;
    margin-bottom: -30px;
}

/* UNDERLINE */
.under {
    width: 120px;
    height: 4px;
    background: #555;
    border-radius: 5px;
    margin: 5px auto 25px;
    overflow: hidden;
    margin-left: -70px;
}

.under span {
    display: block;
    width: 30px;
    height: 100%;
    background: gold;
    animation: moveLine 2s linear infinite;
}

@keyframes moveLine {
    0% { transform: translateX(-40px); }
    100% { transform: translateX(120px); }
}

/* IMAGE BOX */
.radio-image-box {
    position: relative;
    max-width: 300px;
}

/* IMAGE */
.hero-image {
    width: 100%;
    border-radius: 15px;
}

/* PLAY BUTTON */
#play {
    position: absolute;
    top: 110px;
    left: 240px;
    transform: translate(-50%, -50%);

    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border: 3px solid rgb(157, 0, 255);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

/* PLAY ICON */
#play img {
    width: 25px;
    margin-left: -1.5px;
    margin-top: 5px;
}

/* HOVER EFFECT */
#play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

#play:hover img {
    filter: invert(1);
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    #play {
        width: 40px;
        height: 40px;
        top: 90px;
        left: -210px;
    }

    #play img {
        width: 20px;
        margin-right: -1.5px;
        margin-top: 2.8px;
    }
}
/* 
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #9000ff, #fc8f00);
      color: #fff;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .wrapper {
      width: 95%;
      max-width: 1100px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .left {
      padding: 40px;
      background: linear-gradient(135deg, #6366f1, #9333ea);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .left h1 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .left p {
      opacity: 0.9;
      margin-bottom: 25px;
    }

    .info {
      margin-top: 20px;
    }

    .info div {
      margin-bottom: 15px;
      font-size: 14px;
    }

    .right {
      padding: 40px;
      background: rgba(255,255,255,0.08);
    }

    .right h2 {
      margin-bottom: 20px;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 10px;
      border: none;
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
    }

    form input::placeholder,
    form textarea::placeholder {
      color: #ddd;
    }

    button {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(135deg, #6366f1, #9333ea);
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .success, .error {
      margin-top: 10px;
      text-align: center;
    }

    .success { color: #4ade80; }
    .error { color: #f87171; }

    @media (max-width: 768px) {
      .wrapper {
        grid-template-columns: 1fr;
      }
    } */

    


    .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* CARD */
.news-card {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: 0.3s ease;
}

.news-card:hover {
    transform: scale(1.03);
}

/* DARK OVERLAY */
.news-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* TEXT */
.news-content {
    position: relative;
    color: #fff;
    padding: 20px;
    z-index: 2;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.news-content p {
    font-size: 0.85rem;
    color: #ddd;
}

.news-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.viewer-header {
    background: #111;
    padding: 10px;
}

.viewer-header button {
    color: white;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

#viewerFrame {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-grid {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.contact-card {
    flex: 1;
    min-width: 0; /* prevents overflow breaking layout */
}

.contact-card:nth-child(1) {
    margin-right: 100px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 150px;
    padding: 10px;
    background: #b700ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ff9900;
}

/* MOBILE & TABLET */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-card:nth-child(1) {
        margin-right: 0; /* reset spacing */
    }
}
@media (max-width: 430px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-card:nth-child(1) {
        margin-right: 0; /* reset spacing */
    }
}