
 :root {
    --gradient: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    --bg: #0d0d0d;
    --card-bg: #1a1a1a;
    --text: #ffffff;
    --muted: #a0a0a0;
  }

  body {
    background: var(--bg);
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
  }

@font-face {
    font-family: 'Allenoire';
    src: url('../fonts/FontsFree-Net-Allenoire-Font.ttf') format('truetype');
    font-weight: normal;
}

#tgl_btn {
    color: black;
}

#tgl_btn:hover {
    color: #54595F;
}

nav {
    background-color: black;
}

.icons i {
    padding-left: 5px;
}

.navbar-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 4px;
    color: white;
    position: relative;
}

.navbar-nav a:hover {
    background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.navbar-nav a.active {
    background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

nav a:hover::before {
    width: 100%;
}

.nav-link {
    color: white;
}

a {
    text-decoration: none;
    color: black;
}

.top-banner {
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: #d4af37;
    /* gold tone */
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.carousel-caption {
    left: 3%;
    position: relative;
    top: 20%;
    width: 70%
}

.para-button{
    left: 20%;
    width: 65%;
}

.ci {
    background: url(../images/carousel_image_1.png) center center / cover no-repeat;
    height: 850px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.ci2 {
    
    height: 850px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.herop{
    font-size: 1.5rem;
    margin-bottom: 3rem;
    margin-left: 80px;

}

.heroh {
    font-size: 6rem;
    width: 90%;
    margin-bottom: 3rem;
    font-family: 'Allenoire';

    background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.heroh2 {
    font-size: 6rem;
    margin-bottom: 3rem;
    font-family: 'Allenoire';
    display: inline-block;  /* Important */
    margin-left: 80px;
    background: linear-gradient(90deg, #6a00ff 3%, #ce4be8 50%, #ffd900 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading {
    font-size: 5rem;
    font-family: 'Allenoire';
    margin-bottom: 3rem;
    display: inline-block;  /* Important */
    background: linear-gradient(90deg, #6a00ff 3%, #ce4be8 50%, #ffd900 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading2 {
    font-size: 3rem;
    font-family: 'Allenoire';
    display: inline-block;  /* Important */
    background: linear-gradient(90deg, #6a00ff 3%, #ce4be8 50%, #ffd900 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nb{
    padding-left: 5rem;
    padding-right: 4rem;
}

.ni{
    width: 400px;
}

.her-button {
    color: white;
    font-weight: 500;
    border-radius: 40px;
    padding: 10px 25px;

    border: 2px solid transparent;

    background:
        linear-gradient(#000000, #000000) padding-box,
        linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%) border-box;
}

.her-button:hover {
    background:
        linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%) padding-box,
        linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%) border-box;
}

/* Card Container */
.card {
    position: relative;
    width: 300px;
    height: 430px;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease;
    border: transparent;
    transform-origin: top center;
}

/* Lift card on hover */
.card:hover {
    transform: scaleY(1.05);
}

/* Image */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: top center;
    transition: transform 0.4s ease;
}

/* Zoom image on hover */
.card:hover .card-img {
    transform: scale(1.1);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-end; /* top-left start */
    justify-content: flex-start; /* left */
    padding-left: 8px; /* space from top-left */
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Show overlay on hover */
.card:hover .overlay {
    opacity: 1;
}

/* Overlay content */
.overlay-content {
    display: flex;
    flex-direction: column;
}

/* Gradient text */
.overlay-text {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white; /* fallback */
    transition: transform 0.4s ease;
}

/* Slide text left on hover */
.card:hover .overlay-text {
    transform: translateX(0);
}

/* Arrow */
.overlay-arrow {
    font-size: 1.7rem;
    color: white;
    transition: transform 0.4s ease;
    transform: translateX(0);
}

/* Move arrow right on hover */
.card:hover .overlay-arrow {
    transform: translateX(260px); /* moves right and stops */
}

.about-p{
    font-size: 1.2rem;
    padding-left: 5%;
}

.about-p2{
    padding-left: 5%;
}

.about-p3{
    padding-right: 5%;
}

.home-sec{
    font-size: 1.5rem;
    width: 95%;
    padding-left: 10%;
    letter-spacing: 2%;
}


.card2 {
    position: relative;
    width: 420px;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.card2-content {
    position: absolute;
    bottom: 7%;
    left: 5%;
    right: 5%;
    background: rgba(0,0,0,0.8);
    padding: 25px;
    color: white;
    height: 80px;
    transition: height 0.6s cubic-bezier(.16,1,.3,1);
}

.card2-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5%;
}

.card2-content p {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    margin-top: 5%;
}

.card2-icon {
    position: absolute;
    right: 20px;
    top: -25px;
    width: 55px;
    height: 55px; 
    background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, transform 0.3s ease;
    font-size: 1.3rem;
}

.card2:hover .card2-content p{
     opacity: 1;
    transform: translateY(0);
}
.card2:hover .card2-icon{
    opacity: 0;
    transform: scale(0.7);
}

.card2:hover .card2-content{
    height: 255px; 
}



@media (max-width: 768px) {

    .home-sec{
        font-size: 1rem;
        width: 100%;
        padding-left: 0;
        letter-spacing: 1%;
    }

    .card2 {
        
        width: auto;
        height: 300;
    }
    .carousel-caption {
        padding-bottom: 30px;
        left: 0;
        right: 5%;
        width: 100%;
        top: 5%;
    }

    .ci {
        /* background: transparent; */
        height: 650px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
    }

    .ci2 {
        background: transparent;
        height: 450px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
    }

    .para-button{
        width: 100%;
    }

    .herop{
        font-size: 1rem;
        margin-bottom: 1.5rem;
        margin-left: 10px;
    }

    .heroh{
        font-size: 2rem;
        width: 100%;
        margin-bottom: 3rem;
        left: 0;
        font-weight: bold;
    }

    .heroh2{
        font-size: 3rem;
        margin-bottom: 1rem;
        left: 0;
        font-weight: bold;
        margin-left: 10px;
    }

    .heading{
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .heading2{
        font-size: 2rem;
    }

    .nb{
        padding-left: 0;
        padding-right: 0;
    }

    .ni{
        width: 200px;
    }

    .about-p{
        padding-top: 5%;
    }

    .about-p2{
        padding-top: 5%;
    }

    .about-p3{
        padding-top: 5%;
    }
}

#preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            /* background color */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            /* default fully visible */
            transition: opacity 0.5s ease;
            /* smooth fade-out */
        }

        .loader-logo img {

            animation: pulse 1.5s infinite ease-in-out;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .loader-logo img {

            max-width: 80px;
            animation: pulse 1.5s infinite ease-in-out;
        }



    /* ── SECTION WRAPPER ── */
    .testimonial-section {
      width: 100%;
      position: relative;
      overflow: hidden;
      background: #0d0d0d;
    }

    /* ── WAVE LINES BACKGROUND ── */

    /* ── SLIDER TRACK ── */
    .slider-track {
      position: relative;
      z-index: 2;
    }

    /* ── SLIDE ── */
    .slide {
      display: none;
      padding: 60px 80px 70px 80px;
      animation: slideIn .6s ease;
    }
    .slide.active { display: flex; align-items: center; gap: 70px; }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ── AVATAR ── */
    .avatar-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .avatar-ring {
      width: 270px;
      height: 270px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #2a2a2a;
      filter: grayscale(100%);
    }
    .avatar-ring img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* quote badge */
    .quote-badge {
      position: absolute;
      bottom: 4px;
      right: 4px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6a00ff 0%, #ce4be8 35%, #ffd900 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: #fff;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(168,85,247,.5);
    }

    /* ── CONTENT ── */
    .content { flex: 1; }

    .quote-text {
      font-size: clamp(1rem, 1.55vw, 1.25rem);
      color: #b0b0b0;
      line-height: 1.75;
      margin-bottom: 28px;
      font-weight: 400;
      font-size: 1.2 rem;
    }

    .author-row {
      display: flex;
      align-items: end;
      gap: 18px;
    }
    .author-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
    }
    .author-role {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #6a00ff ;
    }

    /* ── DOTS ── */
    .dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5;
    }
    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #333;
      cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .dot.active { background: #a855f7; transform: scale(1.3); }


    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .slide.active { flex-direction: column; gap: 30px; padding: 50px 30px 70px; text-align: center; }
      .author-row { justify-content: center; }
      .avatar-ring { width: 130px; height: 130px; }
      .quote-badge {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
        }
    }

     /* Divider top */
  .footer-top-line {
    width: 100%;
    height: 2px;
    background: var(--gradient);
    opacity: 1;
  }

  footer {
    background: var(--bg);
    padding: 60px 0 0;
  }

  /* Logo area */
  .footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    /* border-bottom: 1px solid #a0a0a0; */
  }



  /* Main grid */

  .footerh {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    margin-left: 10%;
  }

  /* Reach us */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-item .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
  }

  .contact-item .icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--muted);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Links */
  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
  }

  .footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.3s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  .footer-links a:hover::after {
    width: 100%;
  }

  /* Blog signup */
  .blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
  }

  .blog-card h4 {
    margin-bottom: 18px;
  }

  .input-row {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .input-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    padding: 11px 14px;
  }

  .input-row input::placeholder {
    color: #555;
  }

  .subscribe-btn {
    background: var(--gradient);
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 11px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .subscribe-btn:hover {
    opacity: 0.85;
  }

  .blog-note {
    color: #555;
    font-size: 0.78rem;
    margin-top: 12px;
    line-height: 1.5;
  }

  /* Bottom bar */
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-bottom p {
    color: #444;
    font-size: 0.8rem;
  }

  .fi{
    width: 600px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 36px;
      padding: 40px 40px;
    }
    .footer-col:last-child {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      padding: 32px 24px;
      gap: 28px;
    }
    .footer-col:first-child,
    .footer-col:last-child {
      grid-column: 1 / -1;
    }
    .footer-logo-wrap {
      margin: 0 24px;
    }
    .logo-text {
      font-size: 1.7rem;
    }
    .footer-bottom {
      padding: 20px 24px;
    }
  }

.gradient-border-box {
    background: linear-gradient(90deg, #6a00ff, #ce4be8, #ffd900);
    padding: 2px;              /* Border thickness */
    border-radius: 15px;       /* Optional rounded corners */
}

.gradient-border-box > .inner-content {
    background: #111;          /* Ya jo tumhara background ho */
    border-radius: 13px;       /* Slightly less than parent */
    padding: 3rem;
}

/* Keyframes */
  @keyframes topToBottom {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes bottomToTop {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes leftToRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes rightToLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  @keyframes zoomOut {
    from { transform: scale(1.2); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  /* Direction + Trigger on .visible */
  .rtl {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .rtl.visible {
    animation: rightToLeft 1s ease-out forwards;
    opacity: 1;
  }
  
  .ltr {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ltr.visible {
    animation: leftToRight 1s ease-out forwards;
    opacity: 1;
  }
  
  .ttb {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ttb.visible {
    animation: topToBottom 1s ease-out forwards;
    opacity: 1;
  }
  
  .btt {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .btt.visible {
    animation: bottomToTop 1s ease-out forwards;
    opacity: 1;
  }

  .zi {
    opacity: 0;
    transition: all 0.5s ease;
  }

  .zi.visible {
    animation: zoomIn 1s ease-out forwards;
    opacity: 1;
  }

  .zo {
    opacity: 0;
    transition: all 0.5s ease;
  }

  .zo.visible {
    animation: zoomOut 1s ease-out forwards;
    opacity: 1;
  }