/* ================== Global Reset ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

::selection {
  background: #e6f85e;
  color: #000;
}

::-moz-selection {
  background: #e6f85e;
  color: #000;
}


.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid #ff517e;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: all 0.15s linear;
    z-index: 100000;
    background: none;
}


/* ================== Header ================== */
.desktop-header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* Logo */
.logo-side img {
    max-height: 100px;
}

/* ================== Menu ================== */
.menu-side
{
    padding: 15px 40px;
    background: #07122c;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid #9a54046b;
}
.menu-side ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.menu-side ul li {
    list-style: none;
}

.menu-side ul li a {
    color: #ff9200;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline effect */
.menu-side ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffb703;
    transition: width 0.3s ease;
}

.menu-side ul li a:hover {
    color: #ffb703;
}

.menu-side ul li a:hover::after {
    width: 100%;
}

/* ================== Auth Buttons ================== */
.auth-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 16px;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: white;
}

.login-btn img {
    width: 18px;
}

.login-btn:hover {
    background: #fff;
    color: #000;
}

/* Get Quote Button */
.auth-side button {
    padding: 12px 26px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(180deg, #ff517e 0%, #e7a327 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,183,3,0.3);
}

.auth-side button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,183,3,0.5);
}



.mobile-header
{
    display: none;
}

.mobile-header-list{
    display: none;
}

/* ================== Hero Section ================== */
.hero-section {
    width: 100%;
    min-height: 60vh;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
        url('../images/hero-banner.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

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

    padding: 180px 8% 140px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* subtle glow overlay */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(242,126,78,0.18), transparent 60%);
    pointer-events: none;
}

.hero-section strong
{
    font-size: 5rem;
    color: #ff9600;
    font-weight: 800;
}
.hero-section h1
{
    font-size: 65px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    font-family: auto;
}

.hero-section p
{
    font-size: 2.3rem;
    font-style: oblique;
    color: #ffcf66;
}

.home-page-1
{
    width: 100%;
    padding: 3% 20px;
    background: #01122b;
}

.home-page-1 .card-design
{
    width: 100%;
    padding: 20px;
    border: 1px solid #e6f85ea1;
    border-radius: 10px;
    background: linear-gradient(45deg, #f0814a, #07122c);
}
.home-page-1 .card-design .img-part
{
    width: 80px;
    height: 80px;
    background: white;
    display: flex;
    padding: 15px;
    border-radius: 26px;
    border: 1px solid #e6f85e;
}
.home-page-1 .card-design .body-part h3
{
    font-weight: 600;
    font-size: 23px;
    color: #ffffff;
    font-family: math;
    margin-bottom: 20px;
}
.home-page-1 .card-design .body-part p
{
   margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
    color: white;

}

.home-page-1 .card-design .bottom-part 
{
    padding: 13px 10px;

}
.home-page-1 .card-design .bottom-part ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.home-page-1 .card-design .bottom-part ul li
{
   list-style: none;
   
}
.home-page-1 .card-design .bottom-part ul li a
{
    font-size: 1.7rem;
    color: #ffffff;
   
}
.home-page-1 .card-design .bottom-part ul li .normal-shape {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 30px;
}


.home-page-2 {
    padding: 80px 20px;
    position: relative;
    background: #01122b;
    overflow: hidden;
}

/* Gradient Blur Shape */
.home-page-2 .forst-shape {
    position: absolute;
    top: -150px;
    left: -100px;
    width: 1200px;
    height: 600px;
    background: linear-gradient(
        98deg,
        #00E3F2 5.55%,
        #FF9B00 32.85%,
        #FF2828 57.49%,
        #E6F85E 86.75%
    );
    opacity: 0.18;
    filter: blur(90px);
    z-index: -1;
}

/* LEFT CONTENT */
.home-page-2 .left-side span {
    font-size: 18px;
    color: #e99e2d;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.home-page-2 .left-side span::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #fc5a73, #ec9239);;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
    border-radius: 10px;
}

.home-page-2 .left-side h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-page-2 .left-side p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* RIGHT IMAGE */
.home-page-2 .right-side {
    position: relative;
    text-align: center;
    width: 100%;
    border: 3px solid #f96966;
    padding: 10px;
    border-radius: 15px;
}

.home-page-2 .right-side img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* NAME TEXT */
.home-page-2 strong {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.home-page-2  p
{
    text-align: center;
    font-size: 15px;
    color: #ffc23f;
    margin-top: 15px;
    font-weight: 500;
}

.home-page-3
{
    padding: 5% 20px;
    display: flex;
        background: linear-gradient(45deg, #eb9833, #ef705f);
}

.home-page-3 .left-side, .right-side
{
    width: 50%;
    text-align: center;
}
.home-page-3 .left-side
{
    border-right: 3px solid #e6f85e;
}

.home-page-3 h2
{
    color: white;
    font-size: 5rem;
    font-weight: 600;
}
.home-page-3 p
{
    font-size: 2.3rem;
    color: #010202;
    font-weight: 600;
}

.home-page-4
{
    padding: 10px 20px;
    background: #01122b;
}
.home-page-4 h2
{
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #ffa25f;
    font-family: math;
    line-height: 35px;
}

.home-page-4 ul li
{
    list-style: none;
    padding-bottom: 15px;
    color: white;
    font-size: 20px;
    border-bottom: 1px solid #eb973482;
    padding-top: 16px;
    font-family: sans-serif;
}

.home-page-4 .logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: #01122b; /* optional */
}

.home-page-4 .animated-gallery {
  display: flex;
  gap: 25px;
  animation: slideRTL 20s linear infinite;
}

.home-page-4 .logo-slider:hover .animated-gallery {
  animation-play-state: paused;
}

/* CARD DESIGN */
.home-page-4 .card-design {
  min-width: 180px;
  height: 110px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.home-page-4 .card-design img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.home-page-4 .card-design:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.home-page-4 .card-design:hover img {
  filter: grayscale(0%);
}

/* RIGHT TO LEFT ANIMATION */
@keyframes slideRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-page-4 .card-design {
    min-width: 140px;
    height: 90px;
  }
}

.home-page-5 {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgb(7 18 44)), url('../images/background-banner-1.jpg');
    padding: 80px 20px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.home-page-5 h2 {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.home-page-5 .left-side strong {
    font-size: 3rem;
    font-weight: 500;
    opacity: 0.9;
}

.home-page-5 .right-side
{
    width: 100%;
    text-align: left;
}

/* RIGHT SIDE */
.home-page-5 .right-side strong {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 15px;
}

.home-page-5 .right-side p {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #dcdcdc;
}

.home-page-5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-page-5 ul li {
    margin-bottom: 25px;
    border-bottom: 1px solid #e6f85e4d;
}

.home-page-5 ul li b {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
    color: #ff9c14;
}

.home-page-6 {
    padding: 80px 20px;
    background: radial-gradient(#2a191d, #01081d);
}

/* ---------- Head Part ---------- */
.home-page-6 .head-part {
    margin-bottom: 60px;
}

.home-page-6 .head-part h2 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    font-family: system-ui;
    margin-bottom: 20px;
}

.home-page-6 .head-part p {
    font-size: 1.7rem;
    max-width: 750px;
    width: 100%;
    color: #eaeaea;
    line-height: 1.7;
    font-family: sans-serif;
}

/* ---------- Card Design ---------- */
.home-page-6 .card-ds {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: transparent;
    border-radius: 14px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    box-shadow: 0px 1px 10px 0px #80808045;
}

.home-page-6 .card-ds:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* ---------- Image Part ---------- */
.home-page-6 .card-ds .img-part {
    width: 220px;
    min-width: 220px;
}

.home-page-6 .card-ds .img-part img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* ---------- Content Part ---------- */
.home-page-6 .card-ds .cont-part {
    flex: 1;
    border-left: 1px solid #e6f85e40;
    padding: 20px;
    border-right: 1px solid #e6f85e40;
}

.home-page-6 .card-ds .cont-part h4 {
    font-size: 2.2rem;
    color: #e99931;
    margin-bottom: 12px;
    font-weight: 600;
}

.home-page-6 .card-ds .cont-part p {
    font-size: 1.5rem;
    color: #dcdcdc;
    line-height: 1.7;
}

/* ---------- Button Part ---------- */
.home-page-6 .card-ds .btn-part {
    margin-left: auto;
}

.home-page-6 .card-ds .btn-part button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #ed8f3d;
    color: #ed8f3d;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-page-6 .card-ds .btn-part button:hover {
    background: #e6f85e;
    color: #20220f;
}


.home-page-7 {
    padding: 60px 20px;
    background: linear-gradient(
0deg, #eb9634, #fd5975);
}

/* ---------- Heading ---------- */

.home-page-7 .head-part {
    margin-bottom: 50px;
    text-align: center;
}

.home-page-7 .head-part span {
    display: inline-block;
    color: #000000;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Trebuchet MS', Arial, sans-serif;
}

.home-page-7 .head-part h2 {
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 2px;
    max-width: 850px;
    margin: auto;
    font-family: Cambria, Georgia, serif;
    font-weight: 800;
}

/* ---------- Body ---------- */

.home-page-7 .body-part {
    margin-top: 30px;
}

/* ---------- Card ---------- */

.home-page-7 .body-part .card-ds {
    padding: 35px 25px;
    background: linear-gradient(145deg, #091429, rgb(7 18 44));
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.home-page-7 .body-part .card-ds:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(230, 248, 94, 0.25);
}

/* ---------- Icon ---------- */

.home-page-7 .body-part .card-ds .img-part {
    width: 80px;
    height: 80px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    margin-bottom: 25px;
    border-radius: 18px;
}

.home-page-7 .body-part .card-ds .img-part img {
    width: 100%;
    height: auto;
}

/* ---------- Content ---------- */

.home-page-7 .body-part .card-ds .cont-part h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
     display: -webkit-box;
      -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-page-7 .body-part .card-ds .cont-part p {
        color: rgba(255, 255, 255, 0.75);
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: unset;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Link ---------- */

.home-page-7 .body-part .card-ds .cont-part a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffb789;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-page-7 .body-part .card-ds .cont-part a i {
    transition: transform 0.3s ease;
}

.home-page-7 .body-part .card-ds:hover .cont-part a i {
    transform: translateX(6px);
}


.home-page-3 .head-part
{
    text-align: center;
    margin-bottom: 25px;
}

.home-page-3 .body-part {
    margin-top: 30px;
}

.home-page-3 .card-img {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    height: 100%;
}

.home-page-3 .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-page-3 .card-img:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(230,248,94,0.35);
}

.home-page-3 .card-img:hover img {
    transform: scale(1.08);
}
/* ===============================
   HOW IT WORKS – MODERN CIRCLE DESIGN
================================ */
/* =============================
   SECTION BASE
============================= */
.home-page-8 {
    padding: 80px 20px;
    background: #07112a;
}

@media (max-width: 768px) {
    .home-page-8 {
        padding: 60px 15px;
    }
}

/* =============================
   HEADING
============================= */
.home-page-8 .head-part {
    text-align: center;
    margin-bottom: 60px;
}

.home-page-8 .head-part h2 {
    color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3.2rem;
    font-weight: 600;
    position: relative;
}

.home-page-8 .head-part h2::before {
    content: '';
    width: 160px;
    height: 3px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ea9931, #ff527d);
}

@media (max-width: 768px) {
    .home-page-8 .head-part h2 {
        font-size: 2.4rem;
    }
}

/* =============================
   CARD DESIGN
============================= */
.home-page-8 .body-part .card-ds {
    height: 100%;
    padding: 30px 20px 50px;
    background: linear-gradient(145deg, #091429,#ed8d3e5e);
    text-align: center;
    border-radius: 14px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    border: 2px solid #e6f85e38;
}

.home-page-8 .body-part .card-ds:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(230, 248, 94, 0.25);
}

/* =============================
   STEP NUMBER
============================= */
.home-page-8 .body-part .card-ds .step-sec h4 {
    font-size: 6.5rem;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-family: Cambria, Georgia, serif;
    margin: 0;
    line-height: 1;
}

/* =============================
   TITLE TEXT
============================= */
.home-page-8 .body-part .card-ds h6 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 15px 0 15px;
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
    min-height: 0px;
}

@media (max-width: 576px) {
    .home-page-8 .body-part .card-ds h6 {
        font-size: 1.4rem;
        min-height: auto;
    }
}

/* =============================
   ICON BOX
============================= */
.home-page-8 .body-part .card-ds .img-sect {
    width: 70px;
    height: 70px;
    background: #ffffff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 12px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.home-page-8 .body-part .card-ds .img-sect img {
    width: 100%;
    height: auto;
}

/* =============================
   GRID GAP FIX
============================= */
.home-page-8 .body-part .row > div {
    margin-bottom: 60px;
}

/* =============================
   SECTION BASE
============================= */

/* ==================================================
   HOME PAGE 9 – BLOG SECTION
================================================== */

.home-page-9 {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgb(7 18 44)), url('../images/background-banner-1.jpg');
    padding: 80px 20px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;    
}

@media (max-width: 768px) {
    .home-page-9 {
        padding: 60px 15px;
    }
}

/* ==================================================
   HEADER AREA
================================================== */

.home-page-9 .head-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .home-page-9 .head-part {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- LEFT SIDE ---------- */

.home-page-9 .head-part .left-side span {
    display: inline-block;
    background: #E6F85E;
    color: #030506;
    font-size: 1.6rem;
    padding: 10px 28px;
    border-radius: 40px;
    font-family: 'Franklin Gothic Medium', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.home-page-9 .head-part .left-side h2 {
    color: #ffffff;
    margin-top: 25px;
    font-size: 3.4rem;
    line-height: 1.25;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    max-width: 720px;
}

@media (max-width: 992px) {
    .home-page-9 .head-part .left-side h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .home-page-9 .head-part .left-side h2 {
        font-size: 2.2rem;
    }
}

/* ---------- RIGHT SIDE BUTTON ---------- */

.home-page-9 .head-part .right-side a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    color: #ef8744;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ef8744;
    border-radius: 40px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.home-page-9 .head-part .right-side a::after {
    content: "→";
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.home-page-9 .head-part .right-side a:hover {
    background: #ef8744;
    color: #030506;
}

.home-page-9 .head-part .right-side a:hover::after {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .home-page-9 .head-part .right-side a {
        margin-top: 10px;
        padding: 12px 28px;
    }
}

/* ==================================================
   BLOG CARD GRID SPACING
================================================== */

.home-page-9 .body-part {
    margin-top: 30px;
}

/* ==================================================
   BLOG CARD BASE
================================================== */

.home-page-9 .card-ds {
    height: 100%;
        background: linear-gradient(180deg, #eb933780, #020d1f);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
}

.home-page-9 .card-ds:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(230,248,94,0.25);
}

/* ==================================================
   IMAGE PART
================================================== */

.home-page-9 .card-ds .img-part {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #E6F85E;
}

.home-page-9 .card-ds .img-part img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-page-9 .card-ds:hover .img-part img {
    transform: scale(1.08);
}

/* ==================================================
   CONTENT PART
================================================== */

.home-page-9 .card-ds .cont-part {
    padding: 25px 25px 10px;
    flex-grow: 1;
}

.home-page-9 .card-ds .cont-part h4 {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.35;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-page-9 .card-ds .cont-part p {
    color: #bfc5ca;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================================================
   CARD FOOTER
================================================== */

.home-page-9 .card-ds .card-foot {
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.home-page-9 .card-ds .card-foot ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.home-page-9 .card-ds .card-foot ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-page-9 .card-ds .card-foot ul li span {
    color: #9aa1a8;
    font-size: 1.4rem;
}

/* ==================================================
   READ MORE LINK
================================================== */

.home-page-9 .card-ds .card-foot ul li a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E6F85E;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-page-9 .card-ds .card-foot ul li a i {
    transition: transform 0.3s ease;
}

.home-page-9 .card-ds .card-foot ul li a:hover i {
    transform: translateX(6px);
}

/* ==================================================
   RESPONSIVE FIXES
================================================== */

@media (max-width: 768px) {
    .home-page-9 .card-ds .img-part img {
        height: 200px;
    }

    .home-page-9 .card-ds .cont-part h4 {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .home-page-9 .card-ds .cont-part h4 {
        font-size: 1.7rem;
    }

    .home-page-9 .card-ds .cont-part p {
        font-size: 1.4rem;
    }
}

/* ===================== TESTIMONIAL SECTION ===================== */

.home-page-10 {
    padding: 30px 20px;
    background: linear-gradient(135deg, #fd5975, #e99c2e);
    overflow: hidden;
}

/* ---------- Heading ---------- */
.home-page-10 .head-part {
    text-align: center;
    margin-bottom: 50px;
}

.home-page-10 .head-part span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.home-page-10 .head-part h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
}

/* ---------- Swiper ---------- */
.home-page-10 .swiper {
    width: 100%;
    padding-bottom: 10px;
}

.home-page-10 .swiper-wrapper {
    display: flex;
}

/* ---------- Slide ---------- */
.home-page-10 .swiper-slide {
    height: auto;
    display: flex;
}

/* ---------- Card ---------- */
.home-page-10 .card-ds {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: 100%;
    width: 100%;
}

.home-page-10 .card-ds:hover {
    transform: translateY(-10px);
}

/* ---------- Card Header ---------- */
.home-page-10 .head-ds {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.home-page-10 .img-part img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fd5975;
    object-fit: cover;
}

.home-page-10 .head-ds h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.home-page-10 .head-ds span {
    font-size: 14px;
    color: #777;
}

/* ---------- Card Body ---------- */
.home-page-10 .body-ds p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ---------- Card Footer ---------- */
.home-page-10 .foots-ds {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-page-10 .foots-ds strong {
    font-size: 14px;
    color: #fd5975;
}

.home-page-10 .foots-ds ul {
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.home-page-10 .foots-ds ul li i {
    color: #f7b500;
    font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .home-page-10 .head-part h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .home-page-10 {
        padding: 60px 15px;
    }

    .home-page-10 .head-part h2 {
        font-size: 26px;
    }
}


.home-page-11
{
    width: 100%;
    min-height: 60vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)), url('https://img.freepik.com/premium-photo/abstract-119-background-wallpaper-gradient_792836-196229.jpg?semt=ais_user_personalization&w=740&q=80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 8% 140px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.home-page-11 .card-ds
{
    padding: 10px 10px;
    border: 1px solid #f96866;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 20px;
}
.home-page-11 .card-ds .icon-part
{
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f0814a, #07122c);
    border-radius: 30px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: white;
    padding: 10px;
    font-weight: bold;
}
.home-page-11 .card-ds .icon-part p
{
    font-size: 2.3rem;
}
.home-page-11 .card-ds .icon-part i
{
    font-size: 2.3rem;
}
.home-page-11 .card-ds .cont-part h3
{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}
.home-page-11 .card-ds .cont-part p
{
    font-size: 2rem;
    color: #e8a129;
    font-family: math;
}

.home-page-12 {
    padding: 15px 30px;
    background: linear-gradient(45deg, #eb9833, #ef705f);
    color: #fff;
}

/* Common Head Part */
.home-page-12 .head-part {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow */
.home-page-12 .head-part::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

/* Headings */
.home-page-12 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Paragraph */
.home-page-12 p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* Newsletter Form */
.home-page-12 .form-group {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

/* Input */
.home-page-12 .form-control {
    border: none;
    padding: 20px 20px;
    font-size: 14px;
    width: 100%;
    outline: none;
    color : black;
}

/* Subscribe Button (Form) */
.home-page-12 .form-group button {
    background: #ef705f;
    border: none;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.home-page-12 .form-group button:hover {
    background: #eb9833;
}

/* Right Side CTA Button */
.home-page-12 .col-lg-7 button {
    background: #fff;
    color: #ef705f;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-page-12 .col-lg-7 button:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .home-page-12 {
        padding: 60px 0px;
    }

    .home-page-12 .head-part {
        margin-bottom: 25px;
        text-align: center;
        padding: 40px 10px;
    }

    .home-page-12 .form-group {
        flex-direction: row;
        border-radius: 12px;
    }

    .home-page-12 .form-group button {
        width: 70%;
        padding: 0;
        border-radius: 0px;
    }
}

.home-page-12 button
{
    padding: 10px 40px;
    color: white;
    background: linear-gradient(45deg, #fe5679, #07122c);
    border: none;
    border-radius: 31px;
    font-weight: 600;
}

.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgb(7 18 44)),
        url('https://t3.ftcdn.net/jpg/09/85/95/68/360_F_985956812_YL9ce2O3ft09k9XxzfpeJCpL8h3rwAky.jpg');
    padding: 20px 20px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

/* LEFT SIDE */
.footer .left-side .logo-part img {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer .address-sect ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .address-sect ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer .address-sect ul li i {
    color: #e89f2b;
    font-size: 16px;
    margin-top: 4px;
}

/* RIGHT SIDE */
.footer .col-lg-8 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

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

.footer h4 {
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer h4::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 2px;
    background: linear-gradient(45deg, #ee8a41, #fb5d70);
    bottom: 0;
    left: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ffffffcc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #e6f85e;
    padding-left: 6px;
}

/* RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 991px) {
    .footer {
        padding: 60px 20px;
    }

    .footer .col-lg-8 {
        flex-direction: column;
        gap: 35px;
        margin-top: 40px;
    }
     .footer .right-side
    {
        
        flex-direction: column !important;
    }
    .home-page-4 h2
    {
        font-size: 2rem;
    }
    .home-page-4 ul li
    {
        font-size: 12px;
    }

}

/* Mobile */
@media (max-width: 575px) {
    .footer {
        padding: 50px 0px;
        text-align: center;
    }

    .footer .left-side .logo-part img {
        display: block;
    }

    .footer .address-sect ul li {
        text-align: left;
    }

    .footer .col-lg-8 {
        align-items: center;
    }

    .footer h4::after {
        left: 20px;
        transform: translateX(-50%);
        height: 4px;
        width: 40px;
    }

    .footer ul li a:hover {
        padding-left: 0;
    }
}
.footer .right-side
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: justify;
}

/* ================= ABOUT PAGE HERO ================= */
.about-page {
    width: 100%;
    min-height: 60vh;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
        url('../images/hero-banner.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

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

    padding: 180px 8% 140px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* subtle glow overlay */
.about-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(242,126,78,0.18), transparent 60%);
    pointer-events: none;
}

/* ================= CONTENT ================= */
.about-page .head-part {
    position: relative;
    z-index: 2;
}

/* ================= TITLE ================= */
.about-page h1 {
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    color: #ffffff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ================= BREADCRUMB ================= */
.about-page ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.about-page ul li {
    list-style: none;
    font-size: clamp(0.9rem, 1.2vw, 1.4rem);
    color: #ddd;
}

.about-page ul li a {
    color: #f27e4e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-page ul li a:hover {
    color: #ffffff;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .about-page {
        padding: 150px 6% 110px;
    }

    .about-page ul {
        gap: 8px;
        padding: 8px 18px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .about-page {
        min-height: 30vh;
        padding: 120px 5% 30px;
    }

    .about-page h1 {
        letter-spacing: 1px;
    }

    .about-page ul {
        flex-wrap: wrap;
        gap: 6px;
        padding: 14px 30px;
    }

    .about-page ul li {
        font-size: 1.5rem;
    }
}

.about-page-1{
    text-align: left;
    padding: 80px 20px;
}

.about-page-1 .right-side
{
        width: 100%;
        border: 1px solid white;
        padding: 10px;
        border-radius: 10px;
}
.about-page-1 img
{
        width: 100%;
        border-radius: 10px;
        height: 370px;
}
.about-page-1 .left-side h2
{
    font-size: 4rem;
    margin-bottom: 25px;
    font-family: fangsong;
    font-weight: 600;
}
.about-page-1 .left-side p
{
    line-height: 30px;
    font-size: 1.5rem;
    text-align: justify;
}
.about-page-1 .left-side button
{
    padding: 12px 26px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(88deg, #ff517e 0%, #e7a327 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}
/* ==============================
   SECTION BASE
============================== */
.about-page-2 {
    padding: 60px 20px;
    background: linear-gradient(90deg, #010103, #04153d);
}

/* ==============================
   HEADING
============================== */
.about-page-2 .head-part {
    text-align: center;
    margin-bottom: 50px;
}

.about-page-2 .head-part span {
    display: inline-block;
    color: #fb5f6f;
    padding: 8px 28px;
    border: 1px solid #eb9634;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.6rem;
}

.about-page-2 .head-part h2 {
    margin-top: 20px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(90deg, #e99e2d, #eda7ab, #ffa734);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

/* ==============================
   TEAM CARD
============================== */
.about-page-2 .card-ds {
    position: relative;
    background: linear-gradient(45deg, #a47656a1, #07122c, #07122c);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 25px 15px 30px;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid white;
    margin-bottom: 20px;
}

.about-page-2 .card-ds::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #fb5f6f, #ffa734, #7f5cff);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.about-page-2 .card-ds:hover::before {
    opacity: 1;
    
}

.about-page-2 .card-ds:hover {
    transform: translateY(-12px);
    border: none
}

/* ==============================
   IMAGE
============================== */
.about-page-2 .img-part {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgb(237 166 149);
}

.about-page-2 .img-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.about-page-2 .card-ds:hover img {
    transform: scale(1.12);
}

/* ==============================
   CONTENT
============================== */
.about-page-2 .cont-part h4 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 992px) {
    .about-page-2 .img-part {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .about-page-2 {
        padding: 40px 15px;
    }

    .about-page-2 .img-part {
        width: 110px;
        height: 110px;
    }

    .about-page-2 .cont-part h4 {
        font-size: 1.4rem;
    }
}

.about-page-3
{
    padding: 30px 20px;
}

.about-page-3 .left-side {
    height: 100%;
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
}

/* Accent Line */
.about-page-3 .left-side::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    width: 5px;
    height: 80px;
    background: linear-gradient(180deg, #fb5f6f, #ffa734);
    border-radius: 10px;
}

/* Hover Effect */
.about-page-3 .left-side:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
}

/* =========================
   HEADINGS
========================= */
.about-page-3 .left-side h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 18px;
    padding-left: 18px;
    background: linear-gradient(90deg, #f6a52d, #ff7a88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Times New Roman', Times, serif;
}

/* =========================
   TEXT
========================= */
.about-page-3 .left-side p {
    color: #d6dbe5;
    font-size: 1.5rem;
    line-height: 1.9;
    font-weight: 400;
    margin: 0;
    padding-left: 18px;
}

/* =========================
   RESPONSIVE SPACING
========================= */
.about-page-3 .row > div {
    margin-bottom: 30px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .about-page-3 {
        padding: 55px 15px;
    }

    .about-page-3 .left-side {
        padding: 35px 30px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .about-page-3 {
        padding: 45px 15px;
    }

    .about-page-3 .left-side {
        padding: 30px 22px;
    }

    .about-page-3 .left-side::before {
        height: 60px;
        top: 25px;
    }

    .about-page-3 .left-side p {
        font-size: 1.4rem;
        line-height: 1.8;
        text-align: left;
    }
}
/* =========================
   SECTION BASE
========================= */
.about-page-4 {
    width: 100%;
    background:
        linear-gradient(86deg, rgba(1,18,43,0.85), rgba(0,0,0,0.95)),
        url('https://img.freepik.com/premium-photo/abstract-119-background-wallpaper-gradient_792836-196229.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
    color: #fff;
}

/* =========================
   HEADING
========================= */
.about-page-4 .head-part {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-page-4 .head-part h2 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 700;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    position: relative;
    margin-bottom: 25px;
}

.about-page-4 .head-part h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #f96569, #e99931);
    border-radius: 50px;
}

.about-page-4 .head-part p {
    color: #d7dbea;
    font-size: 1.5rem;
    line-height: 1.8;
}

/* =========================
   CARD DESIGN
========================= */
.about-page-4 .card-ds {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 18px 20px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}



/* =========================
   NUMBER CIRCLE
========================= */
.about-page-4 .card-ds .first-side {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #01122b;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

/* Connector line */
.about-page-4 .card-ds .first-side::after {
    content: '';
    position: absolute;
    right: -35px;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #f96569, #e99931);
}

/* =========================
   TEXT PILL
========================= */
.about-page-4 .card-ds .second-side {
    flex: 1;
    padding: 14px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, #eb9536, #f6715c);
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

/* =========================
   GRID SPACING
========================= */
.about-page-4 .body-part .row > div {
    margin-bottom: 10px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .about-page-4 {
        padding: 65px 15px;
    }

    .about-page-4 .card-ds {
        gap: 18px;
        padding: 0px;
    }

    .about-page-4 .card-ds .second-side {
        font-size: 1.5rem;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .about-page-4 {
        padding: 50px 15px;
    }

    .about-page-4 .card-ds .first-side {
        width: 50px;
        height: 50px;
    }

    .about-page-4 .card-ds {
        flex-direction: row;
        align-items: flex-start;
        gap: 0px;
    }

    .about-page-4 .card-ds .first-side::after {
        display: none;
    }

    .about-page-4 .card-ds .second-side {
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
    }
}


/* =========================
   SECTION BASE
========================= */
.service-page {
    padding: 80px 20px;
    background: linear-gradient(180deg, #020d1f, #041b3f);
}

/* =========================
   HEADING
========================= */
.service-page .head-part {
    text-align: center;
    margin-bottom: 60px;
}

.service-page .head-part span {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 30px;
    border: 1px solid #f6a52d;
    color: #f6a52d;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-page .head-part h2 {
    margin-top: 18px;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    background: linear-gradient(90deg, #f6a52d, #ff7a88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* =========================
   CARD
========================= */
.service-page .card-ds {
    height: 100%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 35px 28px;
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Gradient Border */
.service-page .card-ds::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f6a52d, #ff7a88, #7f5cff);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.45s;
    z-index: -1;
}

.service-page .card-ds:hover::before {
    opacity: 1;
}

.service-page .card-ds:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.08);
}

/* =========================
   ICON
========================= */
.service-page .img-part {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6a52d, #ff7a88);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    
}

.service-page .img-part img {
    width: 38px;
    filter: brightness(0) invert(1);
    transition: 0.4s;
}

.service-page .card-ds:hover img {
    transform: rotate(-8deg) scale(1.1);
}

/* =========================
   CONTENT
========================= */
.service-page .cont-part h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-page .cont-part p {
    color: #cfd6e5;
    font-size: 1.45rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* =========================
   BUTTON
========================= */
.service-page .cont-part button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: #f6a52d;
    font-size: 1.45rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.service-page .cont-part button i {
    transition: transform 0.3s;
}

.service-page .cont-part button:hover {
    color: #ff7a88;
}

.service-page .cont-part button:hover i {
    transform: translateX(6px);
}

/* =========================
   GRID SPACING
========================= */
.service-page .body-part .row > div {
    margin-bottom: 30px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .service-page {
        padding: 65px 15px;
    }

    .service-page .card-ds {
        padding: 30px 24px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .service-page {
        padding: 50px 15px;
    }

    .service-page .img-part {
        width: 60px;
        height: 60px;
    }

    .service-page .cont-part h4 {
        font-size: 1.6rem;
    }

    .service-page .cont-part p {
        font-size: 1.4rem;
    }
}
/* ===== Contact Page ===== */
.contact-page {
        padding: 80px 20px;
    background: radial-gradient(rgb(42, 25, 29), rgb(1, 8, 29));
}

.contact-page .left-side {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff30;
}


.contact-page .left-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://webfolio-nuxtjs.vercel.app/assets/imgs/map.png');
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

/* Phone Number */
.contact-page .left-side h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #f96767, #e99c2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main list */
.contact-page .left-side > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .left-side > ul > li {
    margin-bottom: 31px;
    border-bottom: 1px solid #ffffff52;
}

/* Section headings */
.contact-page strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #e99931;
    letter-spacing: 0.5px;
}

/* Address list */
.contact-page .left-side ul ul {
    list-style: none;
    padding-left: 0;
}

.contact-page .left-side ul ul li {
    margin-bottom: 12px;
}

.contact-page span {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #eaeaea;
    margin-bottom: 15px;
}

.contact-page span b {
    color: #ffffff;
}

/* Email */
.contact-page .left-side > ul > li span {
    font-size: 15px;
}

.contact-page .right-side
{
    width: 100%;
    text-align: left;
}

.contact-page .right-side span
{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e99931;
}
.contact-page .right-side h3
{
    
    color: white;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.contact-page .right-side form input
{
    
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: transparent;
    width: 100%;
    margin-bottom: 25px;
}
.contact-page .right-side form textarea
{
    
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: transparent;
    width: 100%;
    margin-bottom: 25px;
    color: white;
}
input.form-control {
    color: #ffffff;   /* jo bhi color chahiye */
}
input.form-control::placeholder {
    color: #ffffff;
    opacity: 1; /* Firefox fix */
}
/* ===== Responsive ===== */
@media (max-width: 991px) {
    .contact-page {
        padding: 60px 0;
    }
    .contact-page .left-side {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .contact-page .left-side {
        padding: 25px 20px;
    }
    .contact-page .left-side h2 {
        font-size: 22px;
    }
    .contact-page strong {
        font-size: 15px;
    }
}

.contact-page .right-side button
{
    padding: 12px 26px;
    width: 50%;
    border: none;
    border-radius: 50px;
    background: linear-gradient(180deg, #ff517e 0%, #e7a327 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

.blog-page {
    padding: 3% 20px;
    background: #020d1f;
}

/* CARD */
.blog-page .card-ds {
    background: linear-gradient(180deg, #eb933780, #020d1f);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.blog-page .card-ds:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.blog-page .card-ds .img-part {
    position: relative;
    overflow: hidden;
}

.blog-page .card-ds .img-part img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-page .card-ds:hover .img-part img {
    transform: scale(1.08);
}

/* CONTENT */
.blog-page .card-ds .cont-part {
    padding: 22px;
    flex-grow: 1;
}

.blog-page .card-ds .cont-part h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-page .card-ds .cont-part p {
    font-size: 14px;
    color: #c9d2e3;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FOOTER */
.blog-page .card-ds .foot-part {
    padding: 18px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-page .card-ds .foot-part ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-page .card-ds .foot-part li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b6c2d9;
    font-size: 13px;
}

.blog-page .card-ds .foot-part li img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.blog-page .card-ds .foot-part li:last-child {
    cursor: pointer;
    color: #00c6ff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-page .card-ds .foot-part li:last-child i {
    transition: transform 0.3s ease;
}

.blog-page .card-ds .foot-part li:last-child:hover {
    color: #fff;
}

.blog-page .card-ds .foot-part li:last-child:hover i {
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-page .card-ds .img-part img {
        height: 200px;
    }

    .blog-page .card-ds .cont-part h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .blog-page {
        padding: 40px 15px;
    }

    .blog-page .card-ds .img-part img {
        height: 180px;
    }
}


/* ================= EVENT PAGE ================= */
.event-page {
    padding: 80px 20px;
    background: #01081d;
}

/* ===== Heading ===== */
.event-page .head-part h2 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    margin-bottom: 60px;
    font-weight: 700;
}

.event-page .head-part h2::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #e7a327, #ec903b);
    bottom: -15px;
    left: 0;
    border-radius: 5px;
}

/* ===== Card ===== */
.event-page .body-part .card-ds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(45deg, black, #29181d);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0px 1px 5px 1px rgb(150 150 150 / 35%);
    transition: all 0.4s ease;
    border: 1px solid white; 
}

.event-page .body-part .card-ds:hover {
    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ===== Left Part ===== */
.event-page .left-part h4 {
    color: #ffffff;
    font-size: 3.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-page .left-part ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-page .left-part ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff9b00;
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff3d;
    padding-bottom: 10px;
}

.event-page .left-part ul li i {
    color: #ec903b;
    font-size: 2.0rem;
}

/* ===== Image ===== */
.event-page .mid-part img {
    width: 260px;
    height: 300px;
    /* object-fit: cover; */
    border-radius: 12px;
    border: 2px solid rgb(255 255 255);
    transition: transform 0.4s ease;
}

.event-page .card-ds:hover .mid-part img {
    transform: scale(1.05);
}

/* ===== Right Part ===== */
.event-page .right-part button {
    background: linear-gradient(135deg, #e7a327, #fe5779);
    color: #ffffff;
    border: 1px solid white;
    padding: 14px 30px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.event-page .right-part button:hover {
    background: linear-gradient(135deg, #ec903b, #e7a327);
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 991px) {
    .event-page .body-part .card-ds {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .event-page .left-part {
        width: 100%;
    }

    .event-page .left-part ul li {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .event-page {
        padding: 60px 15px;
    }

    .event-page .body-part .card-ds {
        padding: 20px;
        gap: 20px;
    }

    .event-page .mid-part img {
        width: 100%;
        height: auto;
    }

    .event-page .right-part button {
        width: 100%;
    }
}

/* =======================
   EVENT PAGE BASE
======================= */
.event-page-2 {
    padding: 60px 20px;
    background: 
        linear-gradient(180deg, rgba(39,23,27,0.9), rgba(0,0,0,0.85)),
        url('https://img.freepik.com/premium-photo/abstract-119-background-wallpaper-gradient_792836-196229.jpg');
    background-size: cover;
    background-position: center;

}


.event-page-2 .row
{
    display: flex;
    flex-wrap: wrap;
}

/* =======================
   HEADING
======================= */
.event-page-2 .head-part {
    text-align: center;
    margin-bottom: 40px;
}

.event-page-2 .head-part h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    position: relative;
}

.event-page-2 .head-part h2::after {
    content: '';
    width: 100px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
}

/* =======================
   CARD LAYOUT
======================= */
.event-page-2 .body-part .card-ds {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #ffffff26;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
}

.event-page-2 .body-part .card-ds:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* =======================
   IMAGE FIXED HEIGHT
======================= */
.event-page-2 .body-part .img-part {
    padding: 8px;
    border: 1px solid #ffffff59;
    border-radius: 14px;
    margin-bottom: 20px;
}

.event-page-2 .body-part .img-part img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

/* =======================
   CONTENT PART
======================= */
.event-page-2 .card-ds .cont-part {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-page-2 .card-ds .cont-part h4 {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 15px;
}

/* =======================
   EVENT INFO
======================= */
.event-page-2 .card-ds .cont-part ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff40;
}

.event-page-2 .card-ds .cont-part ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.5;
}
.event-page-2 .card-ds .cont-part ul li span{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-page-2 .card-ds .cont-part ul li i {
    color: #ec903b;
    font-size: 1.3rem;
    margin-top: 3px;
}

/* =======================
   BUTTON STICKS TO BOTTOM
======================= */
.event-page-2 .card-ds .cont-part button {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(180deg, #ff517e 0%, #e7a327 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.event-page-2 .card-ds .cont-part button:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* =======================
   RESPONSIVE FIXES
======================= */
@media (max-width: 768px) {
    .event-page-2 {
        padding: 40px 15px;
    }

    .event-page-2 .body-part .img-part img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .event-page-2 .body-part .img-part img {
        height: 180px;
    }
}

.event-page-2 .body-part .row > div {
    padding: 15px;
}
.term-page {
    padding: 80px 20px;
    background: 
        linear-gradient(
            rgba(7, 18, 44, 0.92),
            rgba(7, 18, 44, 0.92)
        ),
        url('https://t3.ftcdn.net/jpg/09/85/95/68/360_F_985956812_YL9ce2O3ft09k9XxzfpeJCpL8h3rwAky.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Paragraphs */
.term-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 18px;

}

/* Main headings */
.term-page h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 35px 0 18px;
    position: relative;
}

/* Section headings */
.term-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ea9833;
    margin: 30px 0 12px;
}

/* Strong labels */
.term-page strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 10px;
}

/* Lists */
.term-page ul {
    padding-left: 20px;
    margin-bottom: 22px;
}

.term-page ul li {
    font-size: 16px;
    color: #ec903b;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
}

/* Bullet styling */
.term-page ul li::marker {
    color: #0a2a66;
    font-weight: bold;
}

/* Highlighted disclaimer text */
.term-page b {
    color: #b91c1c;
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .term-page {
        padding: 60px 15px;
    }

    .term-page .col-12 {
        padding: 35px 25px;
    }

    .term-page h2 {
        font-size: 26px;
    }

    .term-page h3 {
        font-size: 20px;
    }

    .term-page p,
    .term-page ul li {
        font-size: 15px;
    }
}


/* =========================
   FAQ SECTION BASE
========================= */
.faq-page {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(7, 18, 44, 0.96)
        ),
        url('https://t3.ftcdn.net/jpg/09/85/95/68/360_F_985956812_YL9ce2O3ft09k9XxzfpeJCpL8h3rwAky.jpg');
    padding: 90px 15px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

/* =========================
   HEADING PART
========================= */
.faq-page .head-part {
    text-align: center;
    margin-bottom: 60px;
}

.faq-page .head-part span {
    padding: 10px 28px;
    border: 1px solid #ec903a;
    color: #ec903a;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-page .head-part h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* =========================
   FAQ BODY
========================= */
.faq-page .body-part {
    max-width: 900px;
    margin: auto;
}

/* =========================
   FAQ ITEM (CARD)
========================= */
.faq-page .faq-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.faq-page .faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================
   QUESTION BUTTON
========================= */
.faq-page .faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    gap: 15px;
}

.faq-page .faq-question:hover {
    color: #ec903a;
}

/* ICON */
.faq-page .faq-question .icon {
    font-size: 26px;
    font-weight: 600;
    transition: transform 0.35s ease, color 0.3s ease;
    color: #ec903a;
    flex-shrink: 0;
}

/* =========================
   ANSWER AREA
========================= */
.faq-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-page .faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #d6d6d6;
}

/* =========================
   ACTIVE STATE
========================= */
.faq-page .faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-page .faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: #fff;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .faq-page {
        padding: 70px 15px;
    }

    .faq-page .faq-question {
        padding: 18px 20px;
    }

    .faq-page .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-page .head-part span {
        font-size: 13px;
        padding: 8px 20px;
    }

    .faq-page .faq-question {
        font-size: 15px;
    }
}

.faq-page .faq-item.active .faq-answer ul
{
    padding: 10px 20px;
}

/* ============================
   TABLE WRAPPER
============================ */
.custom-table-wrapper {
    width: 100%;
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #1b1b1b, #000000);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ============================
   TABLE BASE
============================ */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* ============================
   TABLE HEADER
============================ */
.custom-table thead {
    background: linear-gradient(89deg, #ffb703, #fc5a73);
}

.custom-table th {
    padding: 16px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    color: #000000;
}

/* ============================
   TABLE BODY
============================ */
.custom-table td {
    padding: 15px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================
   ROW HOVER EFFECT
============================ */
.custom-table tbody tr {
    transition: background 0.25s ease;
}

.custom-table tbody tr:hover {
    background: rgba(255,183,3,0.08);
}

/* ============================
   VALUE COLUMN HIGHLIGHT
============================ */
.custom-table td:nth-child(2) {
    font-weight: 600;
    color: #ffcc33;
}

/* ============================
   FINAL ROW (TOTAL / RESULT)
============================ */
.custom-table tbody tr:last-child {
    background: linear-gradient(90deg, rgba(255,183,3,0.15), transparent);
}

/* ============================
   RESPONSIVE (MOBILE)
============================ */
@media (max-width: 768px) {
    .custom-table thead {
        display: none;
    }

    .custom-table,
    .custom-table tbody,
    .custom-table tr,
    .custom-table td {
        display: block;
        width: 100%;
    }

    .custom-table tr {
        margin-bottom: 15px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        padding: 10px 0;
    }

    .custom-table td {
        padding: 12px 15px;
        text-align: right;
        position: relative;
        border: none;
    }

    .custom-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #aaaaaa;
        text-align: left;
    }
}
.footer-bottom
{
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: center;
}
.footer-bottom ul
{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    padding: 10px;
}


/* ===== Press Release Section ===== */
.press-release {
    padding: 60px 20px;
    background: #01081d;
}

/* Heading */
.press-release .head-part {
    margin-bottom: 40px;
}

.press-release .head-part h2 {
    color: #e7a327;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2.2rem, 5vw, 5rem);
    position: relative;
}

/* Underline */
.press-release .head-part h2::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ea9634, #f5725a);
    bottom: -10px;
    left: 0;
    border-radius: 30px;
}

/* ===== Card Design ===== */
.press-release .card-ds {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid white;
    margin-bottom: 20px;
}

/* Thumbnail */
.press-release .card-ds img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.press-release .card-ds:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(234, 150, 52, 0.4);
}

.press-release .card-ds:hover img {
    transform: scale(1.1);
}

/* Dark Overlay */
.press-release .card-ds::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(1, 8, 29, 0.85),
        rgba(1, 8, 29, 0.2)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.press-release .card-ds:hover::after {
    opacity: 1;
}

/* ===== Play Button ===== */
.press-release .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.press-release .play-btn a {
    pointer-events: auto;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ea963499, #f5725a38);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(245, 114, 90, 0.7);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.press-release .play-btn a:hover {
    transform: scale(1.15);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 114, 90, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(245, 114, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 114, 90, 0);
    }
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
    .press-release .card-ds img {
        height: 220px;
    }

    .press-release .play-btn a {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .press-release {
        padding: 40px 15px;
    }

    .press-release .head-part h2::after {
        width: 70px;
    }

    .press-release .card-ds img {
        height: 400px;
    }
}


.success-toast {
    position: fixed;
    top: 30px;
    right: -400px; /* start outside screen */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #ec9337, #fa6668);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    font-size: 16px;
    font-weight: 500;
    animation: toast-slide 4s ease-in-out forwards;
    z-index: 10000;
}

/* Icon */
.success-toast .icon-part {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* Text */
.success-toast p {
    margin: 0;
    white-space: nowrap;
}

/* Animation */
@keyframes toast-slide {
    0% {
        right: -400px;
        opacity: 0;
    }
    15% {
        right: 30px;
        opacity: 1;
    }
    85% {
        right: 30px;
        opacity: 1;
    }
    100% {
        right: -400px;
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .success-toast {
        top: 15px;
        right: 100%;
        transform: translateX(50%);
        max-width: 100%;
        font-size: 13px;
    }
}


/* ===== Section Background ===== */
.press-release-3 {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b1c2d, #00030a);
    color: #fff;
}

/* ===== Heading ===== */
.press-release-3 .head-part {
    text-align: center;
    margin-bottom: 50px;
}

.press-release-3 .head-part h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-family: math;
    font-weight: 900;
}

.press-release-3 .head-part h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #ffb347;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* ===== Card Design ===== */
.press-release-3 .card-ds {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    height: 100%;
    border: 2px solid white;
    padding: 5px;
}

.press-release-3 .card-ds img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

/* Hover Effect */
.press-release-3 .card-ds:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.press-release-3 .card-ds:hover img {
    transform: scale(1.08);
}

/* ===== Spacing Fix ===== */
.press-release-3 .body-part .row > div {
    margin-bottom: 30px;
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 991px) {
    .press-release-3 {
        padding: 60px 0;
    }

    .press-release-3 .head-part h2 {
        font-size: 30px;
    }

    .press-release-3 .card-ds img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .press-release-3 {
        padding: 50px 15px;
    }

    .press-release-3 .head-part h2 {
        font-size: 26px;
    }

    .press-release-3 .card-ds img {
        height: 200px;
    }
}


/* ===========================
   EVENT DETAIL SECTION
=========================== */
.event-detail {
    padding: 80px 20px;
    background: linear-gradient(135deg, #07122c, #0e1a1f, #251014);
    color: #ffffff;
}

/* Row Stretch for Equal Height */
.event-detail .row {
    align-items: stretch;
}

/* ===========================
   IMAGE PART
=========================== */
.event-detail .img-part {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    margin-bottom: 20px;
    border: 2px solid white;
}

.event-detail .img-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    max-height: 450px;
    
}

.event-detail .img-part:hover img {
    transform: scale(1.06);
}

/* ===========================
   CONTENT PART
=========================== */
.event-detail .cont-part {
    height: 100%;
    background: rgb(30 19 21);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Title */
.event-detail .cont-part h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Info List */
.event-detail .cont-part ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.event-detail .cont-part ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #f1f5f9;
}

.event-detail .cont-part ul li i {
    font-size: 18px;
    color: #f9b233;
    margin-top: 4px;
}

/* Description */
.event-detail .cont-part p {
    font-size: 16px;
    line-height: 1.9;
    color: #e6ebf0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
    .event-detail {
        padding: 60px 0px;
    }

    .event-detail .cont-part {
        margin-top: 30px;
        padding: 35px 30px;
    }

    .event-detail .cont-part h2 {
        font-size: 28px;
    }
    .event-detail .cont-part p {
        text-align: justify;
    }
}

@media (max-width: 575px) {
    .event-detail .cont-part {
        padding: 30px 22px;
    }

    .event-detail .cont-part h2 {
        font-size: 24px;
    }

    .event-detail .cont-part ul li {
        font-size: 15px;
    }

    .event-detail .cont-part p {
        font-size: 15px;
    }
}


.plan-page {
    width: 100%;
    background: linear-gradient(
        86deg,
        rgba(1, 18, 43, 0.90),
        rgba(0, 0, 0, 0.95)
    ),
    url('https://img.freepik.com/premium-photo/abstract-119-background-wallpaper-gradient_792836-196229.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
    color: #fff;
}

/* LEFT CONTENT */
.plan-content h2 {
    font-size: 3.2rem;
    color: #ffc23f;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #e5e5e5;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-list li {
    padding: 12px 0;
    font-size: 1.6rem;
    color: #e89f2a;
    border-bottom: 1px solid rgba(255, 207, 102, 0.25);
    position: relative;
    padding-left: 22px;
}

.plan-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffc23f;
}

/* RIGHT LOGOS */
.plan-partners {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-logos li {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logos li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.partner-logos img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* =======================
   RESPONSIVE BREAKPOINTS
   ======================= */

/* Tablets */
@media (max-width: 992px) {
    .plan-content h2 {
        font-size: 2.6rem;
    }

    .plan-list li {
        font-size: 1.2rem;
    }

    .plan-partners {
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .plan-page {
        padding: 60px 15px;
    }

    .partner-logos img
    {

        max-height: 30px;
    }

    .plan-content h2 {
        font-size: 2.1rem;
    }

    .plan-content p {
        font-size: 16px;
    }

    .plan-list li {
        font-size: 1.5rem;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }
}

.plan-page-2 {
    padding: 60px 20px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
    ),
    url('../images/hero-banner.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.plan-page-2 .row {
    display: flex;
    flex-wrap: wrap;
}

/* COLUMNS STRETCH */

/* .plan-page-2 .col-sm-6,
.plan-page-2 .col-lg-3 {
    display: flex;
} */

/* CARD */
.plan-page-2 .card-ds {
    height: 100%;
    width: 100%;
    padding: 25px;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.plan-page-2 .card-ds:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
    border-color: #e8a12a;
}

/* HEAD */
.plan-page-2 .card-ds .head-part {
    margin-bottom: 18px;
}

.plan-page-2 .card-ds .head-part h3 {
    color: #e8a12a;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;   /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MID HIGHLIGHT */
.plan-page-2 .card-ds .mid-part {
    margin-bottom: 0px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #fb5e70, #ea9931);
    border-radius: 35px;
    text-align: center;
}

.plan-page-2 .card-ds .mid-part strong {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* LAST PART LIST */
.plan-page-2 .card-ds .last-part {
    margin-top: auto;
}

.plan-page-2 .card-ds .last-part ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.plan-page-2 .card-ds .last-part ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #f1f1f1;
    font-size: 1.5rem;
    line-height: 1.5;
    border-bottom: 1px solid #ffffff2e;
    padding-bottom: 10px;
    /* display: -webkit-box;
    -webkit-line-clamp: 1;   
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

/* CUSTOM CHECK ICON */
.plan-page-2 .card-ds .last-part ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e8a12a;
    font-size: 1.5rem;
    font-weight: bold;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 991px) {
    .plan-page-2 {
        padding: 50px 15px;
    }

    .plan-page-2 .card-ds {
        padding: 22px;
    }

    .plan-page-2 .card-ds .head-part h3 {
        font-size: 1.6rem;
    }

    .plan-page-2 .card-ds .mid-part strong {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .plan-page-2 {
        padding: 40px 12px;
    }

    .plan-page-2 .card-ds {
        padding: 20px;
        border-radius: 15px;
    }

    .plan-page-2 .card-ds .head-part h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .plan-page-2 .card-ds .mid-part {
        padding: 14px;
        border-radius: 25px;
    }

    .plan-page-2 .card-ds .last-part ul li {
        font-size: 0.95rem;
    }
}

/* ===============================
   SECTION BASE
================================ */
.plan-page-3 {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b1023, #1a0f14);
    font-family: "Poppins", system-ui, sans-serif;
}

/* GRID SPACING FIX */
.plan-page-3 .row > div {
    margin-bottom: 30px;
}

/* ===============================
   HEADER
================================ */
.plan-page-3 .head-part {
    margin-bottom: 18px;
}

.plan-page-3 .head-part h2 {
    font-size: 26px;
    font-weight: 700;
    color: #f5c16c;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.plan-page-3 .head-part p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ===============================
   CARD / BODY
================================ */
.plan-page-3 .body-part {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-page-3 .body-part:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* ===============================
   TABLE
================================ */
.plan-page-3 table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

/* TABLE HEAD */
.plan-page-3 thead th {
    background: linear-gradient(135deg, #f5c16c, #d9a441);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 12px;
    text-align: center;
    text-transform: uppercase;
}

/* TABLE BODY */
.plan-page-3 tbody td {
    font-size: 14px;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LAST ROW BORDER REMOVE */
.plan-page-3 tbody tr:last-child td {
    border-bottom: none;
}

/* ROW HOVER */
.plan-page-3 tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ===============================
   FULL WIDTH TABLE (LAST SECTION)
================================ */
.plan-page-3 .col-lg-12 .body-part {
    max-width: 100%;
}

/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 991px) {
    .plan-page-3 {
        padding: 60px 0;
    }

    .plan-page-3 .head-part h2 {
        font-size: 22px;
    }

    .plan-page-3 thead th,
    .plan-page-3 tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 576px) {
    .plan-page-3 {
        padding: 45px 0;
    }

    .plan-page-3 .head-part h2 {
        font-size: 20px;
    }

    .plan-page-3 .head-part p {
        font-size: 13px;
    }

    /* TABLE SCROLL FIX */
    .plan-page-3 .body-part {
        overflow-x: auto;
    }

    .plan-page-3 table {
        min-width: 480px;
    }

    .plan-page-3 thead th,
    .plan-page-3 tbody td {
        font-size: 12px;
        padding: 10px;
    }
}


.plan-page-4 
{
    background: #07122c;
}

.plan-page-4 .head-part
{
    text-align: center;
}
.plan-page-4 .head-part h2
{
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
}
.plan-page-4 .head-part ul
{
    display: flex;
    flex-direction: column;
    gap: 15px;

}
.plan-page-4 .head-part ul li
{
    padding: 15px;
    border-bottom: 1px solid #ffffff47;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
}
.plan-page-4 .head-part ul li strong
{
    color: #ffa734;
    
}
.plan-page-4 .head-part ul li span
{
    color: #ffffff;
    
}
/* ===============================
   TABLET (≤ 991px)
================================ */
@media (max-width: 991px) {

    .plan-page-4 .head-part h2 {
        font-size: 2.8rem;
    }

    .plan-page-4 .head-part ul li {
        flex-wrap: wrap;
        text-align: center;
        padding: 14px;
    }

    .plan-page-4 .head-part ul li strong,
    .plan-page-4 .head-part ul li span {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ===============================
   MOBILE (≤ 576px)
================================ */
@media (max-width: 576px) {

    .plan-page-4 .head-part h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .plan-page-4 .head-part ul {
        gap: 12px;
    }

    .plan-page-4 .head-part ul li {
        flex-direction: column;
        gap: 6px;
        padding: 12px 10px;
    }

    .plan-page-4 .head-part ul li strong {
        font-size: 1.5rem;
    }

    .plan-page-4 .head-part ul li span {
        font-size: 1.3rem;
        text-align: center;
    }
}

/* ===============================
   SMALL MOBILE (≤ 400px)
================================ */
@media (max-width: 400px) {

    .plan-page-4 .head-part h2 {
        font-size: 1.7rem;
    }

    .plan-page-4 .head-part ul li strong,
    .plan-page-4 .head-part ul li span {
        font-size: 0.85rem;
    }
}
.event-detail-2
{
    padding: 3% 20px;
    background: #07112a;
}
.event-detail-2 .head-part
{
    text-align: center;
}
.event-detail-2 .head-part h2
{
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    position: relative;
    margin-bottom: 50px;
}
.event-detail-2 .head-part h2::after
{
    content: '';
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(45deg, #f96569, #ec923a);
    top: 50px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 30px;
}
.event-detail-2 .body-part .card-ds 
{
   margin-bottom: 15px;
   margin-top: 20px;
       height: 100%;
}
.event-detail-2 .body-part .card-ds img
{
    width: 100%;
    border: 1px solid white;
    border-radius: 10px;
    max-height: 170px;
    object-fit: cover;
}

/* =========================
   INTRO PAGE BASE
========================= */
.intro-page {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgb(7, 18, 44)),
        url('../images/background-banner-1.jpg');
    padding: 80px 20px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================
   LEFT SIDE (IMAGE)
========================= */
.intro-page .left-side {
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
}

.intro-page .left-side img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}
.intro-page  .cont-part {
    text-align: center;
}
.intro-page  .cont-part ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding: 0;
    justify-content: center;
}
.intro-page  .cont-part ul li {
    list-style: none;
}
.intro-page  .cont-part ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}



/* =========================
   RIGHT SIDE CONTENT
========================= */
.intro-page .right-side {
    width: 100%;
    padding-left: 25px;
}

.intro-page .right-side h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

/* =========================
   SOCIAL ICONS
========================= */
.intro-page .right-side ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding: 0;
}

.intro-page .right-side ul li {
    list-style: none;
}

.intro-page .right-side ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.intro-page .right-side ul li a:hover {
    background: #fff;
    color: #07122c;
    transform: translateY(-3px);
}

/* =========================
   TEXT CONTENT
========================= */
.intro-page .right-side p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    text-align: left;
}

/* =========================
   SUB HEADINGS
========================= */
.intro-page .right-side h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    text-align: left;
    margin-bottom: 25px;
}

.intro-page .right-side h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -15px;
    border-radius: 5px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 991px) {
    .intro-page {
        padding: 60px 15px;
    }

    .intro-page .right-side {
        padding-left: 0;
        margin-top: 30px;
    }

    .intro-page .right-side h2 {
        font-size: 2.6rem;
    }

    .intro-page .right-side p {
        font-size: 1.45rem;
    }
    .intro-page .right-side h3::after
    {
        display: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .intro-page {
        padding: 50px 12px;
        text-align: center;
    }

    .intro-page .left-side {
        margin-bottom: 25px;
    }

    .intro-page .right-side h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .intro-page .right-side ul {
        justify-content: center;
    }

    .intro-page .right-side h3 {
        text-align: center;
    }

    .intro-page .right-side h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .intro-page .right-side p {
        font-size: 1.4rem;
        text-align: center;
    }
}

.event-video-fram {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
}

.event-video-fram iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Overlay */
.welcome-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease-in-out;
}

/* Modal */
.welcome-modal {
    background: 
        linear-gradient(#29181d, #4e336557),
        url('https://media.istockphoto.com/id/2149496025/vector/purple-background-wall-studio-room-with-spotlights-shadow-on-floor-empty-dark-violet.jpg?s=612x612&w=0&k=20&c=kCCkaYBg3hDFfDhM7iP98GWi6SY5VwMCWkgmTRhMgUw=');
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;

    color: #fff; /* Make text white for contrast */
    border: 1px solid #ffdfb1;
}


/* Content */
.welcome-content h1 {
    font-size: 35px;
    margin-bottom: 15px;
    color: #ffffff;
}

.welcome-content p {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.welcome-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.welcome-buttons button {
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Skip Button */
.btn-skip {
    background: #f1f1f1;
    color: #333;
}

.btn-skip:hover {
    background: #ddd;
}

/* Start Button */
.btn-start {
    background: #4e3365;
    color: #fff;
}

.btn-start:hover {
    background: #3b274d;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .welcome-modal {
        padding: 30px 20px;
    }

    .welcome-content h1 {
        font-size: 22px;
    }

    .welcome-content p {
        font-size: 14px;
    }

    .welcome-buttons {
        flex-direction: column;
    }

    .welcome-buttons button {
        width: 100%;
    }
}

