/* ============================================
   Google Fonts Import
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");

/* ============================================
   Root & Custom Properties 
   ============================================ */
:root {
    --primary-dark: #0f1c3f;
    --primary-light: #1a2b5e;
    --warning-color: #C59443;
    --success-color: #10b981;
    --purple-accent: #a855f7;
    --pink-accent: #ec4899;
    --blue-accent: #3b82f6;
}

:root {
    --input-bg: #fff;
    --btn-bg: #000;
    --btn-text: #fff;
    --placeholder-color: #8a8f9c;
}

/* ============================================
   General Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ============================================
   Utility Classes
   ============================================ */
.py-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-md-10 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.text-light-secondary {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-balance {
    text-wrap: balance;
}

.text-warning {
    color: var(--warning-color) !important;
}
.navbar-nav .nav-link {
  color: #fff; /* default color */
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffc107; /* hover color */
}

.navbar-nav .nav-link.active {
  color: #ffc107 !important; /* active color */
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #ffc107; /* underline color */
  border-radius: 2px;
}


/* emil-section Start */
.email-section {
    background-image: url('../images/free-trial-bg.png');
    padding: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-bottom: -200px;
    position: relative;
}

.email-form {
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 50px auto;
}

.email-form input {
    border: none;
    outline: none;
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    color: #333;
    border-radius: 50px 0 0 50px;
}

.email-form input::placeholder {
    color: var(--placeholder-color);
}

.email-form button {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 13px 26px;
    font-size: 16px;
    border-radius: 50px 50px 50px 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 2px;
}

.email-form button:hover {
    opacity: 0.9;
}

@media (max-width: 576px) {
    .email-form {
        flex-direction: column;
        border-radius: 25px;
    }

    .email-form input,
    .email-form button {
        width: 100%;
        border-radius: 0;
    }

    .email-form button {
        border-radius: 0 0 25px 25px;
    }
}

/* emil-section-end */

/* ======footer-bg=====start==== */
.footer-bg{
    background-image: url(../images/footer-bg.png);
    width: 100%;
    background-size: 100% 100%;
}
.footer-gap{
    padding-top: 130px;
}
/* ======footer-bg=====end==== */
/* ====pricing-bg-----start==== */
.pricing-bg{
    background-image: url(../images/pricing-bg.png);
    width: 100%;
    background-size: 100% 100%;    
}
/* ====pricing-bg====end====== */

/* features-bg===start=====*/
.features-bg{
    background-image: url(../images/features-bg.png);
    width: 100%;
    background-size: 100% 100%; 
}
/* features-bg===end=====*/
.hero-section{
    position: relative;
}
.sep{
    position: absolute;
    bottom: -1%;
    width: 100%;
    z-index: 1;
}
.sep img{
    background-size: 100% 100%;
    width: 100%;
}

/* ====how-it-works-----start==== */
.how-it-works{
    background-image: url(../images/how-it-bg.png);
    width: 100%;
    background-size: 100% 100%;    
}
/* ====how-it-works====end====== */

/* ====form-main=====start==== */
.form-main{
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.contact-info-box{
    background: linear-gradient(135deg, #c9a442 0%, #d4a456 100%); 
    border-radius: 12px; 
    color: white; 
    min-height: 430px; 
}
/* ====form-main====end====== */


/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    background: linear-gradient(135deg, #0f1c3f 7%, #1a2b5e 68%, #0f1c3f 190%);
}

.navbar-brand {
    font-size: 1.3rem;
    transition: opacity 0.3s ease;
}

.navbar-brand img {
    width: 70%;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.nav-link {
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--warning-color) !important;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.underline-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warning-color) 0%, transparent 100%);
    border-radius: 2px;
}

/* Phone Mockup Container */
.phone-mockup-container {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 auto;
    top: 30%;
}

.phone-mockup img {
    display: block;
    width: 100%;
    
}

.display-4 {
    margin-top: -30px;
}

/* Decorative Shapes */
.shape-purple {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--purple-accent);
    border-radius: 30px;
    top: 100px;
    right: -30px;
    z-index: 0;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.shape-pink {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--pink-accent);
    border-radius: 30px;
    bottom: 150px;
    left: 0px;
    z-index: 0;
    opacity: 0.6;
    animation: float 7s ease-in-out infinite;
}

.shape-blue {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--blue-accent);
    border-radius: 30px;
    bottom: 80px;
    left: -20px;
    z-index: 0;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}
.business-icon {
    width: 70px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   Image Stack Section
   ============================================ */
.image-stack {
    height: 400px;
    position: relative;
}

.image-stack-item {
    position: absolute;
}

.image-stack-item:nth-child(1) {
    left: 0;
    top: 0;
    width: 220px;
}

.image-stack-item:nth-child(2) {
    left: 120px;
    top: 30px;
    width: 220px;
}

.image-stack-item:nth-child(3) {
    left: 240px;
    top: 10px;
    width: 220px;
}

/* ============================================
   Service Cards
   ============================================ */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.service-card:hover .card-title {
    color: var(--warning-color) !important;
}

/* ============================================
   Buttons
   ============================================ */
.btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #000;
}

.btn-warning:hover {
    background-color: #C59443;
    border-color: #f59e0b;
}

.btn-outline-light:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #000 !important;
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing-card {
    transition: all 0.3s ease;
    background: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    transform: scale(1);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 24px 48px rgba(251, 191, 36, 0.2) !important;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.accordion-button {
    background-color: #ffffff;
    border-radius: 12px !important;
    padding: 1.25rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #f9fafb;
    color: var(--warning-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fbbf24'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 1.25rem;
    background-color: #fafbfc;
}
.privacy-policy-text1 h6 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 6px;
    margin: 0;
    padding-top: 20px;
}
.privacy-policy-text1 h5 {
    font-size: 16px;
    font-weight: 800;
}
.privacy-policy-text1 span {
    font-size: 15px;
}
.privacy-policy-text1 h3 {
    font-size: 14px;
    font-weight: 400;
}
.privacy-policy-text1 ul {
    margin: 0;
}
.privacy-policy-text1 ul li {
    padding: 4px 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Extra Small Devices (Mobile) */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .phone-mockup-container {
        height: auto;
        margin-top: 2rem;
    }

    .phone-mockup {
        max-width: 250px;
    }

    .shape-purple,
    .shape-pink,
    .shape-blue {
        display: none;
    }

    .image-stack-item:nth-child(2),
    .image-stack-item:nth-child(3) {
        display: none;
    }

    .image-stack-item:nth-child(1) {
        left: 0;
        top: 0;
        width: 100%;
    }

    .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .mb-8 {
        margin-bottom: 2rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-card {
        margin: 0 auto;
    }

    .pricing-card-featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Small Devices (Tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .phone-mockup-container {
        height: 400px;
    }

    .shape-purple,
    .shape-pink,
    .shape-blue {
        display: none;
    }

    .image-stack-item:nth-child(2),
    .image-stack-item:nth-child(3) {
        display: none;
    }

    .image-stack-item:nth-child(1) {
        left: 0;
        top: 0;
        width: 100%;
    }

    .py-8 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* Medium Devices (Tablets - Landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .phone-mockup-container {
        height: 450px;
    }

    .image-stack-item:nth-child(2) {
        display: none;
    }

    .image-stack-item:nth-child(3) {
        left: 160px;
        top: 20px;
        width: 200px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pt-7 {
        padding-top: 5rem;
    }
}

/* Large Devices (Desktop) */
@media (min-width: 992px) {
    .display-4 {
        font-size: 3.5rem;
    }

    .display-5 {
        font-size: 2.5rem;
    }

    .phone-mockup-container {
        height: 550px;
    }

    .shape-purple,
    .shape-pink,
    .shape-blue {
        display: block;
    }

    .image-stack {
        height: 400px;
    }

    .image-stack-item {
        width: 220px;
    }
}

/* Extra Large Devices (Large Desktop) */
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }

    .py-md-10 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* ============================================
   Animations & Transitions
   ============================================ */
.service-card,
.btn,
.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .navbar,
    footer {
        display: none;
    }
}

/* ============================================
   Responsive Input Groups
   ============================================ */

@media (max-width: 767.98px) {
    .form-control-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Feature Cards
   ============================================ */
.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h5 {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

/* ============================================
   How It Works Section
   ============================================ */
.step-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #c9a460;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CTA Section (Blue to Purple Gradient)
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 3rem 0;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-section>.container {
    position: relative;
    z-index: 2;
}

.cta-section input {
    background: #ffffff;
    border: none;
    color: #1f2937;
}

.cta-section input::placeholder {
    color: #9ca3af;
}

.cta-section .btn-dark {
    background-color: #1f2937;
    border-color: #1f2937;
    font-weight: 600;
}

.cta-section .btn-dark:hover {
    background-color: #111827;
    border-color: #111827;
}

/* ============================================
   Features Hero Section
   ============================================ */
.bg-light {
    background-color: #f3f4f6;
}

/* ============================================
   Responsive Design - Features Page
   ============================================ */

/* Mobile */
@media (max-width: 575.98px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-card h5 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .cta-section .form-control-lg,
    .cta-section .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .cta-section .d-flex {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-card {
        padding: 1.75rem;
    }

    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .cta-section .form-control-lg {
        max-width: 100%;
    }

    .cta-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-card {
        padding: 2rem;
    }

    .step-circle {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section .form-control-lg {
        max-width: 350px;
    }

    .cta-section .d-flex {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .feature-card {
        padding: 2.5rem;
    }

    .step-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 4rem 2rem;
    }

    .cta-section .form-control-lg {
        max-width: 300px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .feature-card {
        padding: 2.5rem;
    }

    .cta-section {
        padding: 5rem 2rem;
    }
}

/* ============================================
   Decorative Dots Animation
   ============================================ */
.dot-decoration {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--warning-color);
    border-radius: 50%;
}

/* ============================================
   Contact Us Page Styles
   ============================================ */
.contact-info-box {
    position: relative;
    overflow: hidden;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-icon {
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form Styling */
.form-label {
    font-size: 0.95rem;
    color: #5e6876;
    margin-bottom: 0.5rem;
}
.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: transparent;
    border-bottom-color: #c9a456;
    color: #1f2937;
    box-shadow: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.contact-icon{
    background-color: white;
    border-radius: 100%;
    padding: 10px;
    color: #000;
}
/* Add responsive contact form layout */
@media (max-width: 991.98px) {
    .contact-info-box {
        order: 2;
        margin-top: 2rem;
    }

    .contact-info-box h3 {
        font-size: 1.35rem;
    }

    #contactForm {
        order: 1;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.65rem 0;
    }
}

@media (max-width: 575.98px) {
    .contact-info-box {
        padding: 2.5rem !important;
        margin-top: 2rem;
    }

    .contact-info-box h3 {
        font-size: 1.25rem;
    }

    .contact-info-box p {
        font-size: 0.9rem;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-control {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .row.g-4 {
        gap: 1rem !important;
    }
}

/* ============================================
   Footer Styles
   ============================================ */

footer a {
    transition: color 0.3s ease;
}

footer a:hover,
footer a.transition-link:hover {
    color: var(--warning-color);
}

footer .transition-link {
    transition: all 0.3s ease;
}

footer .transition-link:hover {
    transform: translateY(-2px);
}

footer h6 {
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--warning-color);
    padding-bottom: 0.75rem;
    display: inline-block;
}

/* Footer responsive padding and spacing */
footer .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    footer .container-fluid {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Footer Text Styling */
footer .text-light-secondary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer .text-muted:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Button Styling */
footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #000 !important;
}

/* Footer Language Selector */
footer .form-select-sm {
    font-size: 0.9rem;
    color: #9ca3af;
}

footer .form-select-sm option {
    background-color: #0f1c3f;
    color: #fff;
}

footer .form-select-sm:focus {
    color: var(--warning-color);
    border-color: var(--warning-color);
}

/* Footer responsive design for all breakpoints */

/* Mobile Devices */
@media (max-width: 575.98px) {
    footer {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    footer .row.g-4 {
        gap: 1.5rem !important;
    }

    footer h6 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    footer ul li {
        margin-bottom: 0.75rem !important;
    }

    footer ul li a {
        font-size: 0.9rem;
    }

    footer .d-flex.gap-3 {
        gap: 1rem !important;
    }

    footer .btn-outline-light {
        font-size: 0.85rem;
        padding: 0.5rem 1rem !important;
        width: 100%;
        justify-content: center;
    }

    footer .pt-4 {
        padding-top: 1.5rem !important;
    }

    footer .text-light-secondary {
        font-size: 0.85rem;
    }

    .border-bottom.border-secondary {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
}

/* Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    footer {
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
    }

    footer .row.g-4 {
        gap: 2rem !important;
    }

    footer h6 {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    footer ul li {
        margin-bottom: 0.9rem !important;
    }

    footer .btn-outline-light {
        font-size: 0.9rem;
        width: 100%;
    }

    footer .text-light-secondary {
        font-size: 0.9rem;
    }
}

/* Tablets Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    footer {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    footer .row.g-lg-5 {
        gap: 2.5rem !important;
    }

    footer h6 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    footer ul li {
        margin-bottom: 1rem !important;
    }

    footer .btn-outline-light {
        font-size: 0.95rem;
    }

    footer .text-light-secondary {
        font-size: 0.95rem;
    }
}

/* Large Devices (Desktop - 992px and up) */
@media (min-width: 992px) {
    footer {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    footer .row.g-lg-5 {
        gap: 3rem !important;
    }

    footer h6 {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    footer ul li {
        margin-bottom: 1.2rem !important;
    }

    footer ul li a {
        font-size: 0.95rem;
    }

    footer .btn-outline-light {
        font-size: 0.95rem;
        width: auto;
    }

    footer .d-flex.gap-3 {
        gap: 1.5rem !important;
    }

    footer .text-light-secondary {
        font-size: 1rem;
    }

    footer .pt-4 {
        padding-top: 2rem !important;
    }
}

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    footer {
        padding-top: 6rem;
        padding-bottom: 3.5rem;
    }

    footer h6 {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    footer ul li {
        margin-bottom: 1.5rem !important;
    }

    footer .pt-4 {
        padding-top: 2.5rem !important;
    }
}





@media only screen and (min-width:320px) and (max-width:767px){
     .email-section {
        padding: 30px;
        background-repeat: no-repeat;
        position: relative;
        background-size: cover  ;
    }
    .email-form {
     margin: 10px auto;
}
.email-form button {
    padding: 13px 26px;
    margin-right: 0px;
}
.mobile-st{
    padding-top: 20px;
}
.footer-bg {
    background-size: cover;
}
.Copyright{
    text-align: center;
}
}



@media only screen and (min-width:768px) and (max-width:992px){
  .mobile-st {
    padding-top: 50px;
  }
}
.Header {
  position: sticky;
  top: 0;
  z-index: 1030;
}