  /* ----------- GLOBAL ----------- */
        body {
            margin: 0;
            font-family: 'Hahmlet', serif;
            /* transition: background 0.3s, color 0.3s; */
            font-size: 16px;
        }

        /* ----------- TOP HEADER ----------- */
        .top-header {
            width: 100%;
            height: 45px;
            background: #022d62;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            font-size: 14px;
        }

        .right-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Language Button */
        .lang-btn {
            background: rgba(255, 255, 255, 0);
            color: #ffffff;
            border: none;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
        }

        /* A+ A- A buttons */
        .acc-btn {
            background: #ffffff00;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 1px 5px;

            font-weight: bold;
            cursor: pointer;
        }


        /* Round Theme Button */
        .theme-btn {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 2px solid white;
            background: black;
            cursor: pointer;
        }

        /* Dark Mode */
        .dark-mode {
            background: #111 !important;
            color: white !important;
        }

        .dark-mode .top-header {
            background: #000;
        }
       .dark-mode .iitm-footer {
         background: #000;
       }
        .dark-mode .theme-btn {
            background: white;
            border-color: black;
        }

        /* Toggle Switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 45px;
            height: 22px;
        }

        .switch input {
            display: none;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            background-color: #ccc;
            border-radius: 34px;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 17px;
            width: 17px;
            bottom: 0.5px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }

        input:checked+.slider {
            background-color: #022d62;
        }

        input:checked+.slider:before {
            transform: translateX(22px);
        }

        .slider.round {
            border-radius: 34px;
            border: 2px solid #ffffff;
        }

        /* Mobile Responsive */
        @media (max-width: 576px) {
            .right-controls {
                gap: 5px;
            }

            .acc-btn,
            .lang-btn {
                padding: 4px 8px;
                font-size: 12px;
            }
        }

        /* LEFT CONTROLS SAME DESIGN AS RIGHT */
.left-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Links style same as right buttons */
.left-item {
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
  .left-item:hover {
    text-decoration: none;
    color: #ffffff!important;
}
/* Dropdown */
.dropdown {
    position: relative;
}

.drop-btn {
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.drop-menu {
    position: absolute;
    top: 25px;
    left: 0;
    background: white;
    color: black;
    display: none;
    flex-direction: column;
    min-width: 150px;
    border-radius: 4px;
    z-index: 1001;
}

.drop-menu a {
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}

.drop-menu a:hover {
    background: #eee;
}

/* Show dropdown on hover */
.dropdown:hover .drop-menu {
    display: flex;
}
.nav-actions {
    position: relative;
}

.search-input {
    display: none;
    position: absolute;
    top: 9px;
    left: -120px;
    padding: 1px 12px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Optional: make input visible when active */
.nav-actions.active .search-input {
    display: block;
}


        /* -------------------------------------------------- */
/* FOOTER                                              */
/* -------------------------------------------------- */
.iitm-footer {
    background: #022d62;
    color: white;
    font-family: Arial;
}
.iitm-footer a {
    color: white; text-decoration: none; font-size:14px;
}
.iitm-footer a:hover { text-decoration: underline; }

.social-top a {
    color: #022d62;;
    background: white;
    padding: 9px 10px;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 14px;
}

.footer-logo img { 
    filter: brightness(0.95); 
        height: 60px;
    width: 220px;
    object-fit: fill;
}



.footer-dropdown {
    position: relative;
}

.footer-drop-btn {
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.footer-drop-content {
    position: absolute;
    top: 25px;
    left: 0;
    background: #022d62;
    min-width: 180px;
    border-radius: 4px;
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 5;
}
 header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
  border-bottom: 2px solid #ddd;
  position: relative;
}

.logo img {
  height: 50px;
}

.navbar {
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #000;

}

/* Mega Menu Styling */
.mega-menu {
     display: none;
    position: absolute;
    top: 100%;
    right: -270px;
    background: #050505;
    width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    justify-content: space-between;
    z-index: 10;
    border-top: 3px solid #022d62;
}

.mega-column {
  width: 30%;
}

.mega-column h4 {
  color: white;
  font-size: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mega-column ul {
  list-style: none;
  padding: 0;
}

.mega-column ul li a {
  display: block;
  padding: 6px 0;
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.mega-column ul li a:hover {
  color: #f46101;
}

/* Show Mega Menu on hover (desktop) */
.mega:hover .mega-menu {
  display: flex;
}

/* Actions */
.nav-actions button {
  border: none;
  background: #022d62;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.nav-actions .search-btn {
  background: transparent;
  color: #000;
  font-size: 18px;
}

/* ---------- RESPONSIVE ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: #000;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    border-top: 1px solid #ccc;
    z-index: 999;
  }

  .navbar.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    padding: 10px 20px;
  }

  .nav-menu li {
    width: 100%;
  }

  .mega-menu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
    border-top: none;
    padding: 10px 0;
  }

  .mega.open .mega-menu {
    display: flex;
  }

  .mega-column {
    width: 100%;
  }

  .mega-column h4 {
    font-size: 1rem;
    margin-top: 10px;
  }
}
/* hero section img */
      .slider-img {
    width: 100%;
    height: 600px;
    margin: auto;
    position: relative;
    overflow: hidden; /* hide overflowing images */
}

.list {
    display: flex;
    transition: 0.5s;
    width: 100%;
    position: relative;
    left: 0;
}

.list .item {
    min-width: 100%; /* ensures each item takes full slider width */
    height: 100%;
}

.list .item img {
    width: 100%; /* full width of its parent */
    height: 100%;
    object-fit: cover;
}

.buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.dots{
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    transition: 1s;
}
.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 20px;
    border-radius: 20px;
}
.dots li.active {
    width: 30px;
}
@media screen and ( max-width: 768px) { 
    .slider-img {
        height: auto;
    }
    
}
   /* *********** About********** */
.about-us .left .about-us-image
 {
    width: 100%;
    height: 440px;
    border-radius: 40px 0 0 40px;
    transition: 0.5s;
}
.about-us:hover .about-us-image {
    box-shadow: 10px 10px 0 #022d62;
}
.about-us .right {
    position: relative;
    width: 100%;
    height: 100%;
}
.about-us .right .position h6 {
    font-size: 20px;
    font-weight: bold;
    color: #f46101;
}
.about-us .right .position a:hover {
    background-color: transparent;
    color: var(--black);
}
@media screen and (max-width: 1366px) {
    .about-us .right .position {
        top: 20%;
    }
}
@media screen and (max-width: 1366px) {
    .about-us .right .position {
        top: 20%;
    }
}

@media screen and (max-width: 1440px) {
    .about-us .right .position {
        top: 5%;
    }
}
@media screen and (max-width: 1500px) {
    .about-us .right .position {
        padding: 20px 40px;
    }
}
@media screen and (max-width: 1550px) {
    .about-us .right .position {
        top: 9%;
        padding: 25px 45px;
    }
}
.about-us .right .position {
    position: absolute;
    top: 11%;
    left: -20%;
    width: 120%;
    padding: 30px 50px;
    background-color: var(--white);
    box-shadow: 0 0 10px #00000038;
    border-radius: 5px;
}
.about-first-sec i{
color: #022d62;
}

.about-first-sec img {
  border: 1px dashed #022d62;
  width: 100%;
  height: 465px;
    object-fit: cover;
}
.about-us .right .position
 {
    position: absolute;
    top: 11%;
    left: -20%;
    width: 120%;
    padding: 30px 50px;
    background-color: white;
    box-shadow: 0 0 10px #00000038;
    border-radius: 5px;}
.about-first-sec h3 {
  font-size: 22px;
}
.text{
  padding-bottom: 10x;
}

 .about-first-four i{
  font-size: 30px;
 }
.about-btn {
    background-color: #022d62;
  border-radius:10px ;
  color: white;
  font-weight: 600;
      margin-left: -6px;
}
.about-btn:hover{
   color: #022d62;
   border: 2px solid #022d62;
   background-color: white;
 
}
.txt {
    margin-top: 12px;
    font-size: 12px;
}
.bg-red {
  background-color: #022d62;
}
/* news section */
     /* MAIN 2 COLUMN LAYOUT */
.news-section {
    display: grid;
    grid-template-columns: 3fr 1.5fr; /* Left wide, right narrow */
    gap: 40px;
  
    margin: auto;
}

/* Section headers */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 15px;
}

.news-header h2 {
    font-size: 30px;
    color: #022d62;
    border-bottom: 4px solid #022d62;
    
}
.announcements__text {
    position: relative;
    font: 16px / 40px "Lato-Bold";
    background: black;
    float: left;
    color: white;
    margin: 0;
    padding-right: 20px;
    position: relative;
    z-index: 9;
    padding-left: 15px;
}
/* .marquee{
    float: left;
    padding-left: 20px;
    width: -webkit-calc(100% - 143px);
    width: -moz-calc(100% - 143px);
    width: calc(100% - 143px);
} */
.marquee-container {
  height: 40px;
  overflow: hidden;
  line-height: 30px;
  background-color: #022d62;
  color: white;


  .marquee {
    top: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
  }

  .marquee2 {
    animation-delay: 15s;
  }
  b {
    padding-left: 10px;
  }
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%
  }
}


/* NEWS cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* RECENT card */
.recent-card {
    display: flex;
    flex-direction: column;
}
.view-all{
    color: #f46101;
}
.recent-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.recent-info {
    margin-top: 12px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .news-section {
        grid-template-columns: 1fr; /* Stack both */
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
/* Course & Learning */
  /* img new */
        .campus-img img {
  width: 100%;
  height: 200px;
  border: 3px solid white;
}

.course-title h2 {
  color: white;
}

.campus-img h5 {
  color: #fff;
  font-size: 25px;
}

.campus-img a {
  text-decoration: none;
}

.campus-img i {
  font-size: 18px;
  font-weight: 700;
}

.course-section {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
  text-align: center;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.course-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.underline-white {
  width: 60px;
  height: 3px;
  background-color: #ffffff;
  margin-top: 6px;
}
/* department section */
  .department-title {
  font-size: 28px;
  font-weight: 600;
  color: #022d62;
  margin: 0;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #022d62;
  margin-top: 6px;
}

.dept-card {
  position: relative;
  overflow: hidden;
  border: 2px solid;
  border-image: linear-gradient(90deg,
      rgb(85, 6, 49) 0%,
      rgb(37 21 219) 75%,
      rgba(147, 17, 173, 0.54) 100%) 1;

  height: 250px; /* All boxes same height */
  width: 100%;
}

.dept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.dept-card:hover img {
  transform: scale(1.05);
}

.dept-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #022d62;
  color: #ffffff;
  padding: 5px 3px;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
}

/* campus-life  css*/
  .campus-life {
        text-align: center;
        padding: 3rem 6%;
        background-color: #ffffff;
    }

    .campus-life h2 {
        font-weight: 700;
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
        color: #022d62;
    }

    .campus-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    /* Left Panel */
    .campus-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        border: 2px solid #022d62;
        border-radius: 50px;
        color: #022d62;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .feature .num {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .feature .text {
        font-size: 20px;
        font-weight: 500;
        flex: 1;
        text-align: left;
    }

    .feature.active {
        background: #022d62;
        color: #ffffff;
        border-color: #fff;
        font-weight: 600;
        box-shadow: 0 0 15px rgba(17, 125, 57, 0.5);
    }

    .feature:not(.active):hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Right Panel */
    .campus-gallery {
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;
        border-radius: 10px;
    }

    .campus-gallery img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        opacity: 0;
        transform: scale(1.05);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .campus-gallery img.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    /* Responsive */
    @media (max-width: 850px) {
        .campus-container {
            grid-template-columns: 1fr;
        }

        .campus-gallery {
            height: 300px;
        }
    }
    
    /*member counter section*/
      .counter-section {
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/banner3.jpg');
    background-size: cover;
    padding: 35px 0;
    color: #fff;
    text-align: center;
}

.counter-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
    color: white;
    text-shadow: 
        -1px -1px 0 #022d62,  
         1px -1px 0 #022d62,  
        -1px  1px 0 #022d62,  
         1px  1px 0 #022d62;
}


/* Fixed 4 × 2 Grid */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

.counter-box {
    text-align: center;
    padding: 10px;
background-color: rgb(205 196 196 / 70%);
    border-radius: 20px;
    color: #022d62;
}

.icon {
    width: 50px;
    height: 50px;
    border: 2px solid #022d62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.counter {
    font-size: 36px;
    font-weight: 800;
}
.you-tube-sec h3{
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #022d62;
}
.director-section {
    text-align: center;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.director-title {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a73;
    margin-bottom: 15px;
    position: relative;
}

.director-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ff6b35;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

.video-container {
    
    /* max-width: 900px; */
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 300px;
}
.counter-box p {
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.85;
}

/* Responsive: 2×4 on tablets, 1×8 on phones */
@media (max-width: 900px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .counter-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* footer */
.footer-drop-content a {
    padding: 6px 15px;
    display: block;
    font-size: 13px;
}

.footer-drop-content a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Show on hover */
.footer-dropdown:hover .footer-drop-content {
    display: flex;
}

/* Mobile: open on click */
@media(max-width:768px){
    .footer-dropdown:hover .footer-drop-content {
        display: none;
    }
    .footer-drop-btn.active + .footer-drop-content {
        display: flex;
    }
}
iframe {
    overflow-clip-margin: content-box !important;
    overflow: clip !important;
    border-width: 2px;
    border-style: inset;
    border-color: initial;
    border-image: initial;
}
  /* Scroll Top Button */
  #scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #022d62;
    color: white;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none; /* hide until scroll */
    z-index: 1000;
  }

  #scroll-top:hover {
    background-color: #022d62;
    transform: scale(1.1);
  }

  #scroll-top.active {
    opacity: 1;
    pointer-events: auto;
  }



  /* responsive  */
  /* ------------------ GLOBAL RESPONSIVE ------------------ */
@media (max-width: 1200px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 10px 20px;
    }

    .logo img {
        height: 55px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-actions button {
        padding: 6px 12px;
        font-size: 14px;
    }

    .search-input {
        width: 150px;
        left: -100px;
        top: 35px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .top-header {
        flex-direction: column;
        height: auto;
        padding: 5px 10px;
        gap: 5px;
        font-size: 13px;
    }

    .left-controls, .right-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .left-item, .acc-btn, .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .navbar {
        top: 60px;
    }

    .nav-menu {
        padding: 10px 15px;
    }

    .mega-menu {
        width: 100%;
        padding: 10px 0;
    }

    .mega-column {
        width: 100%;
        margin-bottom: 15px;
    }

    .mega-column h4 {
        font-size: 0.95rem;
    }

    .nav-actions .search-input {
        width: 100%;
        left: 0;
        top: 40px;
    }

    /* Footer dropdowns mobile click */
    .footer-drop-content {
        position: static !important;
        display: none;
        flex-direction: column;
        width: 100%;
        background: #205eaa;
        padding: 5px 0;
        border-radius: 0;
    }

    .footer-drop-btn.active + .footer-drop-content {
        display: flex;
    }

    .footer-dropdown:hover .footer-drop-content {
        display: none;
    }

    .footer-logo img {
        width: 120px;
        height: auto;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }

    .top-header {
        font-size: 12px;
        padding: 5px 8px;
    }

    .left-controls, .right-controls {
        justify-content: center;
    }

    .left-item, .acc-btn, .lang-btn {
        font-size: 11px;
        padding: 3px 6px;
    }

    header {
        flex-direction: column;
        padding: 10px 10px;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }

    .nav-actions .search-input {
        width: 90%;
        left: 0;
        top: 35px;
    }

    .mega-menu {
        padding: 10px 20px;
    }

    .mega-column ul li a {
        font-size: 14px;
        padding: 4px 0;
    }

    /* Footer links stacking */
    .footer-menu {
        flex-direction: column;
        gap: 5px;
    }

    .footer-logo p {
        font-size: 12px;
    }

    .social-top {
        justify-content: center;
    }
}

/* ------------------ Hamburger Menu Toggle (JS intact) ------------------ */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 0px;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #000;
        display: block;
        border-radius: 2px;
    }
}
/* Youtube sec */
   .video-container {
            margin: 25px 0;
            display: flex;
            justify-content: center;
        }
.video-wrapper {
            position: relative;
            width: 100%;
            margin: 0 auto;
        }
        
        .video-wrapper iframe {
            width: 100%;
            height: 315px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .watch-text {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        
        .website-link:hover {
            text-decoration: underline;
        }
        
       