@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');
@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* Custom scrollbar to keep layout premium */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f4f6f8;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.h-30{
  height: 30%;
}
.h-40{
  height: 40%;
}
.h-50{
  height: 50%;
}
.h-60{
  height: 60%;
}
.h-70{
  height: 70%;
}
.h-80{
  height: 80%;
}
.bg-cream{
  background-color: #fcf4e7 !important;
}
:root {
        --color-navy: #213a59;
        --color-navy-light: #112d42;
        --color-orange: #daa61f;
        --color-orange-hover: #d3a839;
        --color-cream: #fdfbf9;
        --color-bg-gray: #f4f6f8;
        --font-sans: 'Inter', sans-serif;
        --font-serif: 'Playfair Display', Georgia, serif;
      }
      .marko-one-regular {
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
}
      .text-orange{
        color: var(--color-orange);
      }
      body {
        font-family: var(--font-sans);
        background-color: #0e2433;
        color: #475569;
        overflow-x: hidden;
      }
      
      /* Global Custom Scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: var(--color-bg-gray);
      }
      ::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
      }
      
      /* Selection Highlight */
      ::selection {
        background-color: var(--color-orange);
        color: white;
      }
      .logo img{
        width: 80px;
        height: auto;
        border-radius: 12px;
      }
      /* Typography Classes */
      .font-serif {
        font-family: var(--font-serif);
      }
      .font-sans {
        font-family: var(--font-sans);
      }
      
      /* Premium Styling Elements */
      .rounded-premium {
        border-radius: 2rem;
      }
      @media (min-width: 768px) {
        .rounded-premium {
          border-radius: 2.5rem;
        }
      }
      
      /* Nav Brand Styling */
      .nav-brand-container {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
      }
      .brand-logo-badge {
        width: 36px;
        height: 36px;
        background-color: var(--color-navy-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px -1px rgba(17, 45, 66, 0.12);
        transition: transform 0.3s ease;
      }
      .nav-brand-container:hover .brand-logo-badge {
        transform: scale(1.05);
      }
      .brand-text {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--color-navy);
        letter-spacing: -0.02em;
      }
      .brand-text-bold {
        font-weight: 700;
        color: var(--color-navy-light);
      }
      
      /* Navigation links */
      .custom-nav-link {
        color: #4b5563;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.25s ease;
        padding: 4px 0;
        border-bottom: 2px solid transparent;
      }
      .custom-nav-link:hover {
        color: var(--color-orange);
      }
      
      /* Buttons */
      .btn-navy {
        background-color: var(--color-navy);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 28px;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      .btn-navy:hover {
        background-color: var(--color-navy-light);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(10, 30, 48, 0.15);
      }
      
      .btn-orange {
        background-color: var(--color-orange);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 14px 32px;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-orange:hover {
        background-color: var(--color-orange-hover);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(243, 112, 34, 0.25);
      }
      .btn-orange i {
        transition: transform 0.3s ease;
      }
      .btn-orange:hover i {
        transform: translateX(3px);
      }
      
      .btn-outline-custom {
        background: transparent;
        color: var(--color-navy);
        border: 1px solid #e2e8f0;
        border-radius: 50px;
        padding: 14px 32px;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      .btn-outline-custom:hover {
        border-color: var(--color-navy);
        background-color: #f8fafc;
      }
      
      /* Badge Tag */
      .badge-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #fffbeb;
        color: #92400e;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid rgba(251, 191, 36, 0.25);
      }
      .badge-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--color-orange);
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 112, 34, 0.5); }
        70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(243, 112, 34, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 112, 34, 0); }
      }
      
      /* Hover scale transition */
      .hover-scale-card {
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
      }
      .hover-scale-card:hover {
        transform: scale(1.02);
      }
      
      /* Features Section Customization */
      .tab-btn {
        background: none;
        border: none;
        color: #64748b;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 12px 16px;
        position: relative;
        transition: color 0.3s ease;
      }
      .tab-btn.active {
        color: var(--color-orange);
      }
      .tab-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 2px;
        background-color: var(--color-orange);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }
      .tab-btn.active::after {
        transform: scaleX(1);
      }
      
      /* Interactive Feature Cards */
      .feature-card {
        background-color: white;
        border: 1px solid #f1f5f9;
        border-radius: 1.75rem;
        padding: 32px;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
      }
      .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px -10px rgba(10, 30, 48, 0.08);
        border-color: #e2e8f0;
      }
      .feature-card.expanded {
        border-color: var(--color-orange);
        box-shadow: 0 12px 24px -10px rgba(243, 112, 34, 0.12);
      }
      .icon-wrapper {
        width: 48px;
        height: 48px;
        background-color: var(--color-navy);
        color: white;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: all 0.3s ease;
      }
      .feature-card:hover .icon-wrapper {
        background-color: var(--color-orange);
      }
      .feature-card-title {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-navy);
        margin-bottom: 12px;
        transition: color 0.3s ease;
      }
      .feature-card:hover .feature-card-title {
        color: var(--color-orange);
      }
      .feature-card-desc {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #64748b;
        margin-bottom: 16px;
      }
      .feature-card-details {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        font-size: 0.875rem;
        color: #475569;
        background-color: #faf9f6;
        border-radius: 12px;
        padding: 0;
        margin-top: 0;
        border: 1px solid transparent;
      }
      .feature-card.expanded .feature-card-details {
        max-height: 200px;
        opacity: 1;
        padding: 14px;
        margin-top: 8px;
        border-color: rgba(226, 232, 240, 0.8);
      }
      .feature-card-cta {
        margin-top: auto;
        padding-top: 16px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--color-orange);
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }
      .feature-card-cta i {
        transition: transform 0.3s ease;
      }
      .feature-card.expanded .feature-card-cta i {
        transform: rotate(90deg);
      }
      .feature-card:not(.expanded):hover .feature-card-cta i {
        transform: translateX(3px);
      }
      
      /* Orange Stats & Sisters Section */
      .section-orange {
        background-color: var(--color-orange);
        color: white;
      }
      .sister-img-container {
        border-radius: 1.75rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        aspect-ratio: 16 / 10;
      }
      .sister-img-container img {
        width: 100%;
        height: 100%;
        object-cover: cover;
        transition: transform 0.8s ease;
      }
      .sister-img-container:hover img {
        transform: scale(1.04);
      }
      .sister-img-overlay {
        position: absolute;
        inset: 0;
        background: rgba(243, 112, 34, 0.1);
        mix-blend-mode: multiply;
      }
      .tasbih-img-container {
        border-radius: 1.75rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        aspect-ratio: 1 / 1;
      }
      .tasbih-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
      }
      .tasbih-img-container:hover img {
        transform: scale(1.04);
      }
      .dark-card-tasbih {
        background-color: var(--color-navy);
        border-radius: 1.75rem;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        aspect-ratio: 1 / 1;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.3s ease;
      }
      .dark-card-tasbih:hover {
        background-color: var(--color-navy-light);
      }
      
      /* Dark Timeline Section */
      .section-dark {
        background-color: #0e2433;
        color: white;
      }
      .timeline-card {
        background-color: rgba(20, 45, 62, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 1.75rem;
        padding: 32px;
        height: 100%;
        transition: all 0.3s ease;
      }
      .timeline-card:hover {
        border-color: rgba(243, 112, 34, 0.3);
        background-color: #19374d;
      }
      .timeline-card-number {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--color-orange);
        opacity: 0.8;
        display: block;
        margin-bottom: 16px;
        transition: opacity 0.3s ease;
      }
      .timeline-card:hover .timeline-card-number {
        opacity: 1;
      }
      .timeline-card-title {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 10px;
        transition: color 0.3s ease;
      }
      .timeline-card:hover .timeline-card-title {
        color: var(--color-orange);
      }
      .timeline-card-desc {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #94a3b8;
        font-weight: 300;
      }
      
      /* Stats Grid Item */
      .stat-grid-item {
        background-color: #fdfbf9;
        border: 1px solid rgba(251, 191, 36, 0.08);
        border-radius: 1.25rem;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
      }
      .stat-grid-item:hover {
        transform: translateY(-4px);
        background-color: #faf6f0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
      }
      .stat-grid-value {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-navy);
        transition: color 0.3s ease;
      }
      .stat-grid-item:hover .stat-grid-value {
        color: var(--color-orange);
      }
      .stat-grid-label {
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 300;
        line-height: 1.4;
      }
      @media (min-width: 576px) {
        .stat-grid-value {
          font-size: 2.25rem;
        }
        .stat-grid-item {
          padding: 32px;
        }
      }
      
      /* CTA App Download Card */
      .app-download-card {
        background-color: white;
        border-radius: 2rem;
        padding: 32px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f5f9;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .app-link-button {
        background-color: #fcfaf7;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 1rem;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
      }
      .app-link-button:hover {
        background-color: #f5f1ea;
        border-color: #cbd5e1;
      }
      .app-link-icon-container {
        width: 40px;
        height: 40px;
        background-color: #ffffff;
        color: white;
        border-radius: 12px;
        border: solid 1px rgba(226, 232, 240);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .app-link-label {
        font-size: 0.625rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
        line-height: 1;
        margin-bottom: 4px;
      }
      .app-link-title {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-navy);
        line-height: 1;
      }
      .app-link-arrow {
        color: #cbd5e1;
        transition: all 0.3s ease;
      }
      .app-link-button:hover .app-link-arrow {
        color: var(--color-orange);
        transform: translateX(4px);
      }
      
      /* Hero Grid Images Setup */
      .hero-grid-container {
        height: 450px;
      }
      @media (min-width: 1200px) {
        .hero-grid-container {
          height: 500px;
        }
      }
      .hero-quote-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .hero-bismillah-overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(180, 83, 9, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        transition: background-color 0.3s ease;
      }
      .hero-bismillah-overlay:hover {
        background-color: rgba(180, 83, 9, 0.05);
      }
      
      /* Modal Design Wizard */
      .modal-content-premium {
        border: none;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
      }
      .reg-progress-bar {
        height: 6px;
        background-color: #f1f5f9;
        width: 100%;
        display: flex;
      }
      .reg-progress-fill {
        height: 100%;
        background-color: var(--color-orange);
        transition: width 0.35s ease;
      }
      .gender-select-btn {
        border: 2px solid #f1f5f9;
        background-color: white;
        border-radius: 1.25rem;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
      }
      .gender-select-btn:hover {
        border-color: #cbd5e1;
        background-color: #f8fafc;
      }
      .gender-select-btn.selected {
        border-color: var(--color-orange);
        background-color: rgba(243, 112, 34, 0.03);
      }
      .gender-icon-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: #fffbeb;
        color: var(--color-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
      }
      .gender-icon-circle.brother {
        background-color: rgba(17, 45, 66, 0.05);
        color: var(--color-navy);
      }
      .interest-tag-btn {
        border: 1px solid #e2e8f0;
        background-color: white;
        border-radius: 1rem;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: all 0.25s ease;
        cursor: pointer;
        text-align: left;
        font-size: 0.875rem;
        font-weight: 500;
        color: #334155;
      }
      .interest-tag-btn:hover {
        border-color: #cbd5e1;
        background-color: #f8fafc;
      }
      .interest-tag-btn.selected {
        border-color: var(--color-orange);
        background-color: rgba(243, 112, 34, 0.03);
      }
      .checkbox-indicator {
        width: 20px;
        height: 20px;
        border: 2px solid #cbd5e1;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        font-size: 0.75rem;
        color: white;
      }
      .interest-tag-btn.selected .checkbox-indicator {
        border-color: var(--color-orange);
        background-color: var(--color-orange);
      }
      .success-checkmark-circle {
        width: 80px;
        height: 80px;
        background-color: #f0fdf4;
        color: #16a34a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 24px;
        animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      }
      @keyframes scaleIn {
        0% { transform: scale(0); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
      }
.app-link-icon-container img{
 width: 30px !important;
}
.top-10{
  top: 6% !important;
}

      /* Scroll Reveal Entrance / Exit Animations */
      @media (prefers-reduced-motion: no-preference) {
        .reveal {
          opacity: 0;
          transform: translateY(48px);
          transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
          will-change: opacity, transform;
        }
        .reveal.is-visible {
          opacity: 1;
          transform: translateY(0);
        }

        /* Staggered children (cards inside a grid) */
        .reveal-stagger > * {
          opacity: 0;
          transform: translateY(32px);
          transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
          will-change: opacity, transform;
        }
        .reveal-stagger.is-visible > * {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @font-face {
          font-family: "Royal Crescent Demo";
          src:
              url("./fonts/Royal-Crescent-demo.woff2") format("woff2"),
              url("./fonts/Royal-Crescent-demo.woff") format("woff"),
              url("./fonts/Royal-Crescent-demo.otf") format("opentype"),
              url("./fonts/Royal-Crescent-demo.ttf") format("truetype");
          font-weight: normal;
          font-style: normal;
          font-display: swap;
      }
       @font-face {
          font-family: "ttnorms";
          src:
              url("./fonts/TTNorms-Medium.woff2") format("woff2"),
              url("./fonts/TTNorms-Medium.woff") format("woff"),
              url("./fonts/TTNorms-Medium.otf") format("opentype");
          font-weight: normal;
          font-style: normal;
          font-display: swap;
      }
      .hero-title {
    font-family: "Royal Crescent Demo", serif;
    font-size: 3rem;
}
.font-royalcresent {
    font-family: "Royal Crescent Demo", serif;
}
.font-ttnorms {
    font-family: "ttnorms", serif;
}
.fw-extrabold {
  font-weight: 900 !important;
}

      /* ===== Fullscreen Hero Background Slider ===== */
      .hero-slider-section {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-top: -1rem;
        min-height: 100vh;
        overflow: hidden;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        isolation: isolate;
      }
      @media (min-width: 768px) {
        .hero-slider-section { margin-top: -1.5rem; }
      }
      @media (min-width: 992px) {
        .hero-slider-section { margin-top: -3rem; }
      }

      .hero-slides {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.08);
        transition: opacity 1.6s ease-in-out, transform 7s ease-in-out;
      }
      .hero-slide.active {
        opacity: 1;
        transform: scale(1);
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(to right,
          rgba(10, 30, 48, 0.92) 0%,
          rgba(10, 30, 48, 0.75) 45%,
          rgba(10, 30, 48, 0.30) 100%);
      }

      .hero-content-wrapper {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
      }
      @media (min-width: 768px) {
        .hero-content-wrapper { padding: 2.5rem; }
      }
      @media (min-width: 1200px) {
        .hero-content-wrapper { padding: 3rem 4rem; }
      }
      .hero-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* max-width: 920px; */
      }

      /* Navbar + outline button over dark hero imagery */
      .hero-slider-section .custom-nav-link {
        color: rgba(255, 255, 255, 0.85);
      }
      .hero-slider-section .custom-nav-link:hover {
        color: var(--color-orange);
      }
      .hero-slider-section #mobile-menu-btn i {
        color: #ffffff !important;
      }
      .hero-slider-section .btn-outline-custom {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.5);
      }
      .hero-slider-section .btn-outline-custom:hover {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: #ffffff;
      }
      .ls-3{
        letter-spacing: 3px;
      }
       .ls-2{
        letter-spacing: 1px;
      }
      .left-0{
        left: 0 !important;
      }
      .cstm-app-download-section{
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    overflow:hidden;
}

.cstm-section-badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
}

.cstm-phone-wrapper{
    position:relative;
    height:600px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.cstm-phone{
    position:absolute;
    /* max-width:240px; */
    border-radius:35px;
    /* box-shadow:
        0 25px 50px rgba(0,0,0,.15); */
    transition:.4s ease;
}

.phone-left{
    left:5%;
    transform:rotate(-15deg);
    z-index:1;
}

.phone-center{
    z-index:3;
    transform:translateY(-20px);
}

.phone-right{
    right:5%;
    transform:rotate(15deg);
    z-index:2;
}

.cstm-phone:hover{
    transform:translateY(-15px) scale(1.04);
    z-index:10;
}
.w-80{
  width: 80% !important;
}
@media(max-width:991px){

    .cstm-phone-wrapper{
        height:420px;
    }

    .cstm-phone{
        /* max-width:170px; */
    }

    .phone-left{
        left:0;
    }

    .phone-right{
        right:0;
    }

}

@media(max-width:576px){

    .cstm-phone-wrapper{
        height:auto;
        display:flex;
        gap:15px;
        flex-wrap:wrap;
    }

    .cstm-phone{
        position:relative;
        /* max-width:130px; */
        transform:none!important;
        left:auto;
        right:auto;
    }

}
@keyframes cstmFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

.phone-left{
    animation:cstmFloat 5s ease-in-out infinite;
}

.phone-center{
    animation:cstmFloat 4s ease-in-out infinite;
}

.phone-right{
    animation:cstmFloat 6s ease-in-out infinite;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  color: var(--bs-navy, #0a1d3a); /* falls back to a dark navy if the variable isn't defined */
  border-color: #ffffff;
}
.hover-orange:hover{
  color: var(--color-orange-hover) !important;
}
@media(max-width:768px){
.hero-heading-font{
  font-size: 28px !important;
}
.btn-cstm-cs{
  text-wrap: nowrap !important;
  font-size: 13px;
padding: 12px 18px !important;
}
}
@media(min-width:768px){
.hero-heading-font{
  font-size: 62px !important;
}
.btn-cstm-cs{
  text-wrap: nowrap !important;
  font-size: 15px;
  padding: 12px 28px !important;
  
}
}