/* =====================================================
   METFORM – RESPONSE ANIMATIONS
===================================================== */

/* Open response */
@-webkit-keyframes metform-responseOpen {
  from {
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top center;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top center;
  }
}

@keyframes metform-responseOpen {
  from {
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top center;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top center;
  }
}

/* Close response */
@-webkit-keyframes metform-responseClose {
  from {
    transform: scaleY(1);
    transform-origin: top center;
  }
  to {
    transform: scaleY(0);
    transform-origin: top center;
  }
}

@keyframes metform-responseClose {
  from {
    transform: scaleY(1);
    transform-origin: top center;
  }
  to {
    transform: scaleY(0);
    transform-origin: top center;
  }
}

/* =====================================================
   ZOOM ANIMATIONS
===================================================== */

@-webkit-keyframes metform-zoom-out-zero {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes metform-zoom-out-zero {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

@-webkit-keyframes metform-zoom-in-full {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes metform-zoom-in-full {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================================================
   RESPONSE MESSAGE UI
===================================================== */

.mf-main-response-wrap[data-show="1"] .mf-response-msg {
  animation: metform-responseOpen 0.5s;
}

.mf-main-response-wrap[data-show="0"] .mf-response-msg {
  animation: metform-responseClose 0.5s;
}

.mf-response-msg {
  border-radius: 10px;
  border: 1px solid #c3c2c2;
  padding: 15px 34px;
  text-align: center;
}

.mf-main-response-wrap:not(.mf_pro_activated) .mf-response-msg {
  background-color: #ffffff;
}

/* =====================================================
   FORM INPUTS
===================================================== */

.mf-input-wrapper .mf-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #eaeaea;
  background-color: #fafafa;
  font-size: 16px;
  transition: all 0.2s linear;
}

.mf-input-wrapper .mf-input:focus {
  outline: none;
  border-color: #4285f4;
}

.mf-input-wrapper .mf-input::placeholder {
  color: #c9c1c1;
  font-size: 14px;
}

/* =====================================================
   BUTTONS
===================================================== */

.metform-btn {
  background-color: #4285f4;
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.metform-btn:hover,
.metform-btn:focus {
  background-color: #4285f4;
  outline: none;
}

/* =====================================================
   SUCCESS / ERROR STATES
===================================================== */

.mf-success-icon {
  font-size: 30px;
  color: #101010;
}

.wf-error-res {
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.wf-error-res p {
  color: #721c24;
}

/* =====================================================
   MOBILE FIXES
===================================================== */

@media (max-width: 767px) {
  .mf-input-wrapper,
  .mf-input,
  .mf-btn {
    width: 100%;
  }
}


/*  */


/* =====================================================
   FONT SYSTEM (DESIGN MATCH)
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&display=swap');



body {
  font-family: 'Poppins', sans-serif;

}


/* =====================================================
   TESTIMONIAL SECTION
===================================================== */
.section-testimonial {
  padding: 120px 8%;
  background: #ffffff;
}

.testimonial-label {
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #9a9a9a;
}

.testimonial-title {
  font-size: 96px;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.testimonial-title strong {
  font-weight: 800;
}

.testimonial-title span {
  color: #e5e5e5;
}

.testimonial-content {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.testimonial-quote {
  font-size: 260px;
  color: #efefef;
  line-height: 0.7;
  margin-top: -40px;
}

.testimonial-text p {
  font-size: 18px;
  line-height: 1.85;
  color: #555;
  max-width: 520px;
}

.testimonial-author {
  margin-top: 25px;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #888;
}


/* =====================================================
   FAQ SECTION
===================================================== */
.section-faq {
  padding: 140px 8%;
  background: #0f0f0f;
  color: #fff;
}

.faq-wrapper {
  display: flex;
  gap: 80px;
}

.faq-left {
  width: 40%;
}

.faq-bg-text {
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -3px;
  color: #2a2a2a;
  margin-bottom: -40px;
}

.faq-title {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -2px;
}

.faq-label {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #888;
}

.faq-desc {
  margin-top: 15px;
  font-size: 16px;
  color: #aaa;
}

.faq-right {
  width: 60%;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 25px 0;
}

.faq-question {
  font-size: 20px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #bcbcbc;
}

.faq-item.active .faq-answer {
  display: block;
}


/* =====================================================
   CONTACT SECTION
===================================================== */
.section-contact {
  padding: 140px 8%;
  background: #f7f7f7;
}

.contact-wrapper {
  display: flex;
  gap: 80px;
}

.contact-left {
  width: 40%;
}

.contact-left h2 {
  font-size: 80px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2px;
}

.contact-label {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #888;
}

.contact-form {
  width: 60%;
}

.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

label {
  font-size: 14px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
}

textarea {
  min-height: 100px;
}

.contact-submit {
  margin-top: 40px;
  background: #ff00cc;
  border: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}


/*  */
/* newww
code */




/* --- FOOTER MAIN --- */
.mm-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 30px; /* Top padding thodi badhayi hai for better look */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mm-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
}

/* --- BRAND --- */
.mm-brand {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
}

/* --- GRID & COLUMNS --- */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.mm-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mm-col li {
  margin-bottom: 12px;
  text-transform: capitalize;
}

/* --- LINKS & ICONS --- */
.mm-footer a {
  text-decoration: none !important;
  color: #ddd !important; /* Default Light Grey */
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Icon aur text ke beech gap */
}

.mm-footer i {
  font-size: 18px;
  color: #ddd; /* Default Icon Color */
  transition: all 0.3s ease;
}

/* HOVER EFFECT (#2e4466) */
.mm-footer a:hover,
.mm-footer a:hover i {
  color: #2e4466 !important; /* Hover par aapka blue color */
}

/* --- TAGLINE --- */
.mm-tagline {
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
  color: #ccc;
}

/* --- DIVIDER --- */
.mm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

/* --- BOTTOM SECTION --- */
.mm-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.mm-links {
  display: flex;
  gap: 30px;
}

.mm-links a span {
  font-size: 14px;
  color: #ccc;
  text-transform: capitalize;
  transition: 0.3s;
}

.mm-links a:hover span {
  color: #2e4466 !important;
}

.mm-copy {
  font-size: 14px;
  color: #888;
}

/* --- RESPONSIVE --- */

/* Tablets (1024px to 768px) */
@media (max-width: 1024px) {
  .mm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .mm-tagline {
    text-align: left;
    max-width: 100%;
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  .mm-container {
    padding: 0 25px;
  }
  
  .mm-brand {
    margin-bottom: 40px;
  }

  .mm-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mm-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mm-tagline {
    text-align: center;
    margin-top: 20px;
  }

  .mm-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mm-links {
    justify-content: center;
    gap: 15px;
  }
}













    /* Import Luxury Serif (Brown Sugar Style) and Professional Sans-Serif */
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;700;800&display=swap');

    /* ROOT VARIABLES - UPDATED WITH BRAND PALETTE */
    :root {
        --color-bg: #ffffff;
        --color-blue: #2e4466; /* Muse Blue */
        --color-pink: #eb008b; /* Muse Pink */
        --color-text-gray: #000000;
        --color-light-gray: #edecc6;
        
        /* Updated Font Families */
        --font-serif: 'Cormorant Garamond', serif; /* Brown Sugar Lookalike */
        --font-main: 'Inter', sans-serif;
    }

    /* GENERAL RESET */
    section {
        box-sizing: border-box;
        font-family: var(--font-main);
    }
    
    .container-custom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    /* --- SECTION 1: WHO WE ARE --- */
    .section-who-we-are {
      padding: 80px 0;
      overflow: visible;
    }

    .who-flex-container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 30px; 
        max-width: 1100px;
        margin: 0 auto;
    }

    .who-title-side {
        position: relative;
        flex: 0 0 40%;
    }

    .bg-text-who {
        font-size: clamp(80px, 15vw, 160px);
        font-weight: 800;
        color: var(--color-light-gray);
        line-height: 0.8;
        margin: 0;
        letter-spacing: -8px;
    }

    .fg-text-we-are {
        font-family: var(--font-serif); /* Updated Font */
        font-size: clamp(40px, 9vw, 180px);
        font-weight: 700;
        font-style: italic; /* Luxury Look */
        color: var(--color-blue); /* Updated Color */
        margin: -45px 0 0 5px;
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: scale(0.2);
        transform-origin: left center;
        visibility: visible;
    }

    .who-content-side {
        flex: 0 0 45%;
    }

    .muse-desc {
        font-size: 24px;
        line-height: 1.6;
        color: var(--color-text-gray);
        margin-bottom: 25px;
    }

    .animate-scale-pop {
        opacity: 0;
        transform: scale(0.3);
        transform-origin: center center;
    }

    @media (max-width: 768px) {
        .who-flex-container {
            flex-direction: column;
            gap: 20px;
            padding: 0 20px;
        }
        .bg-text-who { font-size: 100px; }
        .fg-text-we-are { font-size: 45px; }
    }

    /* --- SECTION 2: EXPERIENCE --- */
   
.section-experience {
    padding-bottom: 10px;
    background-color: #ffffff;
    position: relative;
}

.experience-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* --- DARK CARD & WAVE --- */
.dark-card {
    background-color: #2e4466;
    width: 100%;
    padding: 14px 60px 80px 60px;
    border-radius: 80px 80px 30px 30px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.bg-graphic-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.1;
    z-index: 0;
}

/* --- VISION & MISSION CONTENT --- */
.card-content { position: relative; z-index: 2; }

.vision-mission-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-main-title {
    font-family: 'Cormorant Garamond', serif; /* Brown sugar style */
    font-size: clamp(30px, 5vw, 65px);
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 5px;
}

.vision-mission-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.vm-col { flex: 1; }

.vm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 3px;
    letter-spacing: 2px;
}

.vm-list {
    list-style: none;
    padding: 0;
}

.vm-list li {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.vm-list li::before {
    content: '•';
    color: #edecc6; /* Pink bullet */
    position: absolute;
    left: 0;
    font-size: 20px;
}

.vm-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .vision-mission-flex { flex-direction: column; }
    .vm-divider { height: 1px; width: 100%; margin: 40px 0; }
    .stats-bar { position: relative; top: 0; width: 100%; }
    .dark-card { padding-top: 80px; border-radius: 40px; }
}
    /* --- SECTION 3: TIMELINE --- */
    .section-timeline {
        background: #fff;
        overflow: hidden; /* Prevents horizontal scroll during animation */
    }


    /* --- TIMELINE MAIN HEADING CSS --- */
.timeline-main-title {
    text-align: center;
    margin-bottom: 80px; /* Neeche ke contents se gap */
}

.timeline-main-title .sub-tag {
    display: block;
    font-family: var(--font-body); /* Montserrat/Inter */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.timeline-main-title .timehead {
    font-family: var(--font-heading); /* Cormorant Garamond / Brown Sugar Style */
    font-size: clamp(50px, 6vw, 85px); /* Responsive size */
    font-weight: 300;
    font-style: italic;
    color: var(--muse-blue); /* Aapka brand blue */
    margin: 0;
    position: relative;
    display: inline-block;
}

/* Optional: Heading ke niche ek patli line */
.timeline-main-title .timehead::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 40%;
    height: 1px;
    background: var(--muse-beige); /* Beige color ki highlight line */
}

@media (max-width: 768px) {
    .timeline-main-title {
        margin-bottom: 50px;
        text-align: left; /* Mobile pe left align zyada accha lagta hai */
    }
    .timeline-main-title .timehead {
        font-size: 45px;
    }
}

    .timeline-row {
        position: relative;
        margin-bottom: 5px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .timeline-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: -50px;
    }

    .timeline-year-bg {
        font-size: 130px;
        font-weight: 800;
        color: #edecc6; 
        line-height: 0.1;
    }

    .timeline-line {
        flex-grow: 1;
        height: 1.5px;
        background-color: #eee;
    }

    .timeline-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18vh;
        color: #2e4466; /* Muse Blue */
        margin: 0 0 10px 0;
    }

    /* LEFT SIDE ALIGNMENT */
    .row-left { align-items: flex-start; text-align: left; }
    
    /* RIGHT SIDE ALIGNMENT */
    .row-right { align-items: flex-end; text-align: right; }
    .row-right .timeline-desc { margin-left: auto; }

    .timeline-desc {
        font-size: 18px;
        color: #666;
        max-width: 450px;
        line-height: 1.6;
    }

  .row-right .timeline-desc { margin-left: auto; }

    /* Animation: entry distance कम की */
    .animate-from-left { opacity: 0; transform: translateX(-60px); }
    .animate-from-right { opacity: 0; transform: translateX(60px); }

    @media (max-width: 768px) {
        .timeline-year-bg { font-size: 70px; }
        .timeline-title { font-size: 36px; }
        .timeline-header { margin-bottom: -35px; }
        .timeline-row { margin-bottom: 20px; }
    }



    /* team */
    .section-team {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1e3a5f 0%, #0d1b2a 100%);
    overflow: hidden;
}

/* --- HEADER WRAPPER --- */
.team-header-wrapper {
    width: 100%;
    margin-bottom: 60px;
    padding: 0 15px; /* Mobile edges se gap ke liye */
}

.team-header-card {
    background-color: #edecc6;
    padding: 40px 20px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box; /* Padding ko width ke andar rakhne ke liye */
}

.team-main-title {
    font-family: 'Cormorant Garamond', serif; 
    font-size: clamp(1.5rem, 5vw, 4rem); 
    color: #1e3a5f;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    
    /* Responsive Fix: Mobile par agar bada ho toh wrap ho jaye */
    word-wrap: break-word;
    white-space: normal; 
    line-height: 1.2;
}

/* --- GRID LAYOUT --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Desktop: 2 columns */
    gap: 40px;
}

/* --- CARD DESIGN --- */
.member-card {
    background-color: #edecc6;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex-grow: 1;
    text-align: right;
}

.member-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1e3a5f;
    margin: 0;
}

.member-role {
    font-size: 14px;
    font-style: italic;
    color: #1e3a5f;
    opacity: 0.8;
}

.member-line {
    width: 40px;
    height: 2px;
    background-color: #1e3a5f;
    margin-top: 15px;
    margin-left: auto;
    transition: width 0.5s ease;
}

/* --- HOVER EFFECTS --- */
.member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.member-card:hover .member-line {
    width: 100%; /* Line expands on hover */
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .team-grid { grid-template-columns: 1fr; } /* Stack cards on tablet/mobile */
    .team-header-card { padding: 30px 15px; }
}

@media (max-width: 600px) {
    .team-main-title { letter-spacing: 2px; }
    .card-inner { flex-direction: column; text-align: center; }
    .member-info { text-align: center; }
    .member-line { margin: 15px auto 0; }
}
@media (max-width: 768px) {
    .team-header-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    .team-main-title {
        letter-spacing: 2px; /* Mobile par kam space */
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .team-main-title {
        font-size: 1.8rem; /* Ekdum choti screen ke liye fix size */
    }
}


/* ============================================================
   1. GLOBAL VARIABLES
   ============================================================ */
:root {
    --muse-blue: #2e4466;      /* Main Blue */
    --muse-dark-bg: #1f2d44;   /* Darker Blue for BG */
    --muse-beige: #edecc6;     /* Brand Beige */
    --text-white: #ffffff;
   --font-heading: 'Cormorant Garamond', serif; /* Brown Sugar Style */
    --font-body: 'Montserrat', sans-serif;       /* 2nd Clean Font */
}

body { 
    font-family: var(--font-sans); 
    margin: 0; 
    overflow-x: hidden; 
    background-color: #fcfcfc; 
}

/* ============================================================
   2. NAVABR BETTER DESIGN (Dark Blue Background)
   ============================================================ */
.muse-navbar {
    padding: 15px 0;           /* Padding badha di */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Size Increase */
.logo img { 
    height: 70px;             /* Logo bada kar diya */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;                /* Gap badha diya */
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color:black;
    font-weight: 600;
    font-size: 18px;          /* Font bada kar diya */
    position: relative;
    padding-bottom: 8px;
    transition: 0.3s;
}

/* Hover Effect */
.nav-links a:hover {
    color: var(--muse-beige);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--muse-beige); /* Active line beige kar di */
}

/* Contact Us Button Style */
.btn-contact {
    background-color: var(--muse-beige);
    color: var(--muse-blue);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-contact:hover {
    background-color: transparent;
    border-color: var(--muse-beige);
    color: var(--muse-beige);
    transform: translateY(-2px);
}

/* ============================================================
   3. HEADER & RUNNING TEXT
   ============================================================ */
.hero-header {
   height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url("/img/bgimg/BG-Gradient02.png"), url("/img/bgimg/BG-Gradient.png");
    background-size: cover;       
    background-position: center; 
    background-repeat: no-repeat;
}

.running-text-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.running-text {
    font-size: 25vw;
    font-weight: 400;
    color: #111;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    letter-spacing: -5px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* ============================================================
   4. RESPONSIVE (Hamburger)
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 35px;
    height: 3px;
    background: var(--text-white);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--muse-blue);
        width: 100%;
        flex-direction: column;
        padding: 50px 0;
        text-align: center;
    }

    .nav-links.active { 
        display: flex; 
    }

    .hamburger { 
        display: flex; 
    }

    .nav-cta { 
        display: none; 
    }
}

































/* home page */
        /* --- General Layout (Auto Background) --- */
        #masthead {
            padding: 15px 0;
            font-family: 'Cormorant Garamond', serif; /* Brown sugar style */
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .e-con-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* Desktop Sections */
        .logo-container { flex: 1; display: flex; align-items: center; }
        .nav-container { flex: 2; display: flex; justify-content: center; }
        .button-container { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 15px; }

        /* Nav Menu Links */
        .hfe-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 25px;
        }

        .hfe-menu-item {
            text-decoration: none;
            color: inherit;
            font-weight: 500;
            font-size: 20px;
            position: relative;
            transition: 0.3s;
        }

        /* Desktop Hover Effect */
        .hfe-menu-item::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: -5px; left: 0;
            background: #2e4466;
            transition: width 0.3s ease;
        }
        .hfe-menu-item:hover::after { width: 100%; }

        /* Button */
        .elementor-button {
            background-color: #2e4466 !important;
            color: #fff !important;
            padding: 10px 22px !important;
            border-radius: 50px !important;
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif; 
            font-weight: 600;
            font-size: 20px;
            transition: 0.3s !important;
        }

        /* Hamburger Icon */
        .hfe-nav-menu__toggle {
            display: none;
            cursor: pointer;
        }
        .hfe-nav-menu-icon svg { width: 28px; height: 28px; fill: currentColor; }

        /* --- MOBILE VIEW (991px and below) --- */
        @media (max-width: 991px) {
            .hfe-nav-menu__toggle { display: block; }

            .nav-container {
                display: none; 
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff; /* Mobile Only Background */
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-top: 1px solid rgba(0,0,0,0.05);
            }

            .nav-container.active {
                display: block;
                animation: slideDown 0.3s ease-out;
            }

            .hfe-nav-menu {
                flex-direction: column;
                align-items: center; /* ISSE PAGE NAMES CENTER HO GAYE */
                justify-content: center;
                padding: 20px 0;
                gap: 15px;
            }

            .hfe-menu-item {
                display: block;
                padding: 10px 0;
                width: auto; /* Width auto taaki center alignment sahi dikhe */
                color: #333;
                text-align: center; /* Text ko center kiya */
            }

            /* Mobile par underline ko center karne ke liye */
            .hfe-menu-item::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }


        /* service */
        /* We only hide the elements IF the browser supports the animation script */
    .js-enabled .reveal-on-scroll .animated {
        opacity: 0;
    }

    /* This class is added by the script when scrolling */
    .reveal-on-scroll .start-animation {
        opacity: 1 !important;
        visibility: visible !important;
        animation-play-state: running !important;
    }














/* extra */
.whatwedoh2{
 font-size: clamp(32px, 8vw, 70px);
  font-family: 'Cormorant Garamond', serif; 
}
    



/* contact */

:root {
  --font-jakarta:'Cormorant Garamond', serif; }

.contact-section {
  background-color: #f9f9f9; 
  padding: 80px 10%;
  font-family: var(--font-jakarta);
}

.container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.text-content { flex: 1; }
.main-heading {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}
.find-us { font-size: 1.1rem; margin-bottom: 15px; }
.icons-row { display: flex; gap: 12px; }
.icon-circle {
  width: 35px; height: 35px;
  background: #1a1a1a; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.9rem;
}

/* RIGHT FORM - DITTO STYLE */
.form-content { flex: 1; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.field {
  border-bottom: 1px solid #d1d1d1; /* Only bottom line */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  border: none !important; /* Removes the box border */
  outline: none !important;
  background: transparent;
  font-size: 1.5rem;
  color: #000000;
  padding: 5px 0;
}

.full-width { grid-column: span 2; margin-top: 10px; }
textarea { height: 80px; resize: none; }


/* Links se underline hatane ke liye */
.icons-row a {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Icon circle aur size set karne ke liye */
.icon-circle {
    width: 45px;          
    height: 45px;         
    background: #2e4466; 
    border-radius: 50%;   
    margin: 0 5px;       
    transition: 0.3s;     
}

/* Icon ka color aur size handle karne ke liye */
.icon-circle i {
    color: #ffffff;       
    font-size: 1rem;    
}

.icon-circle:hover {
    background: #2e4466;  
    transform: translateY(-3px);
}



/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .container { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
}



















/* product */


/* Header Styling */
/* Explore More Header Design */
.ditto-main-header {
  font-family: 'Cormorant Garamond', serif; 
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
}

.header-line {
    flex: 0 0 150px; /* Line ki length */
    height: 1px;
    background-color: #e0e0e0; /* Light grey line */
}

.header-title {
   font-family: 'Cormorant Garamond', serif; 
    font-size: clamp(40px, 8vw, 110px); /* Responsive big size */
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.light-text {
    color: #d1d1d1; 
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 300; /* Thin weight */
}

.bold-text {
    color: #1a1a1a; 
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 800; /* Extra bold weight */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .header-line { flex: 0 0 50px; }
    .header-title { font-size: 50px; letter-spacing: -1px; }
    .ditto-main-header { gap: 15px; }
}
/* Divider Line between sections */
.ditto-divider { width: 100%; height: 1px; background-color: #eee; margin: 0; }

/* Content Layout */
.ditto-flex-content {
  font-family: 'Cormorant Garamond', serif; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    gap: 30px;
}

/* Big Bold Text */
.ditto-service-heading {
    font-size: 90px;
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #1a1a1a;
}

/* Small Rounded Image */
.ditto-img-area {
    flex: 0 0 280px; /* Small size as requested */
    height: 180px;
    border-radius: 20px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ditto-img-area img { width: 100%; height: 100%; object-fit: cover; }

/* Zigzag Alignment */
[data-side="right"] .ditto-flex-content { flex-direction: row; }
[data-side="right"] .ditto-text-area { text-align: left; }

.ditto-btn-wrap { text-align: center; padding-top: 50px; }

/* Mobile View */
@media (max-width: 768px) {
    .ditto-flex-content { flex-direction: column !important; align-items: flex-start; }
    .ditto-service-heading { font-size: 40px; }
    .ditto-img-area { width: 100%; flex: none; height: 200px; }
}

