@font-face {
    font-family:myFont;
    /* src: url("{% url 'img/bad.otf' %}"); */
    /* src: url("{% static 'img/bad.otf' %}") format("opentype"); */
    src: url("../img/bad.otf") format("opentype"); 
}
/* General Styles */
html, body {
    
    width: 100%;
    overflow-x: hidden;  /* Prevents horizontal scrolling */
    overflow-y: auto;    /* Ensures vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on mobile */

}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right,#1E3A8A, #305CDE, #4F8CFF);
    color: white;
    
}
.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo, nav links, and buttons */
    align-items: center;
    padding: 10px 15px;
    min-height: 50px; /* Set a minimum height for consistency */
    background:linear-gradient(115deg, #2f87e6 10%, #ffffff 90%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navbar Container */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    height: 50px;
    max-width: 1300px;
    margin: 0 auto;
}
.nav-links li:nth-last-child(1){
    margin-right: 10px;
}
/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}
.logo img {
    width: 200px; /* Slightly reduce logo size if needed */
    height: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-left: auto; /* Push nav links to the right */
    position: static; /* Remove absolute positioning */
    transform: none; /* Reset transform */
}

.nav-links li {
    display: inline-block;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #305CDE;
}
.burger-menu{
    display: none;
}
.nav-links .register-btn {
    margin-right: 10px; /* Adjust the value as needed */
}

/* Move Login and Register Buttons to Right */
.nav-links .login-btn, .nav-links .register-btn {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    background: #1E3A8A;
    color: #ffffff !important;
    font-size: 16px;
    
}

.nav-links .login-btn:hover,
.nav-links .register-btn:hover {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .burger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%; /* Move burger menu to the vertical center */
        transform: translateY(-50%); /* Center it properly */
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 280px;
        border-radius: 8px;
        padding: 10px;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        display: block;
        width: 100%;
        text-align: left; /* Move text to the left */
        padding: 12px 15px; /* Add left padding for spacing */
        /* Removed border-bottom to remove underlines */
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 15px; /* Ensure text is left-aligned */
        text-decoration: none; /* Ensure no underline */
        color: #333;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #305CDE;
    }

    /* Fix for Login and Register Buttons */
    .nav-links .login-btn, 
    .nav-links .register-btn {
        width: 90%;
        padding: 12px 0;
        border-radius: 6px;
        text-align: left; /* Move button text left */
        padding-left: 15px; /* Align text properly */
        font-weight: bold;
        font-size: 16px;
        margin: 10px auto;
        border: none;
        cursor: pointer;
        background: #1E3A8A;
        color: #ffffff !important;
        display: block;
    }

    .nav-links .login-btn:hover,
    .nav-links .register-btn:hover {
        background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@media (max-width: 768px) {
    /* Ensure the logo stays at the extreme left */
    .logo-container {
        position: absolute;
        left: 15px; /* Keep it aligned to the left */
        top: 50%; /* Move logo to the vertical center */
        transform: translateY(-50%); /* Center it properly */
        display: flex;
        align-items: center;
    }

    .logo img {
        width: 180px; /* Adjust logo size if needed */
        height: auto;
    }

    /* Move Burger Menu Slightly Left */
    .burger-menu {
        position: absolute;
        right: 50px; /* Adjust burger menu to the left */
    }
    .nav-links.show {
        display: block;
    }
    .burger-menu-active .nav-links .login-btn,
    .burger-menu-active .nav-links .register-btn {
        display: block;
        text-align: center;
        width: 80%;  /* Adjust width to make it consistent */
        margin: 10px auto; /* Centers the button horizontally */
    }
   
}
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh; 
    overflow: hidden;
    color: white;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -2;

}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 80, 0.6); 
    z-index: -1; 
}


.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}


.text-content {
    max-width: 500px;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
    margin-left: 0; 
    margin-right: auto; 
    margin-top: 150px;
    align-self: flex-start;
}


.text-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 30px;
    margin-bottom: 20px;
}


.buttons .btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 22px;
    background: linear-gradient(135deg, black, #444444);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.buttons .btn:hover {
    background: linear-gradient(135deg, black, #212020);
}


.image-content {
    max-width: 30%;
    display: flex;
    justify-content: flex-end;
    margin-left: auto; 
    margin-right: 0; 
    margin-top: 100px; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-content:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.image-content img {
    max-width: 70%;
    height: auto;
}


.ing-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}


.icon {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}


.icon-top-left {
    top: 40%;
    left: 5%;
}

.icon-top-right {
    top: 60%;
    right: 10%;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        height: auto; /* Allow content to adjust height */
        text-align: center;
        padding-top: 50px;
    }

    .text-content {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
        align-self: center;
        margin-top: 20px;
        margin-left: 110px;
       
    }

    .text-content h1 {
        font-size: 5vw;
    }

    .text-content p {
        font-size: 3vw;
    }

    .buttons {
        text-align: center;
    }

    .image-content {
        max-width: 60%;
        justify-content: center;
        margin: 40px auto 0;
        margin-left: 30%;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 60px 15px;
    }

    .text-content {
        max-width: 80%; 
        text-align: center; /* Ensure text is centered */
        margin: 30px auto 0; /* Adjust margin */
        padding-left: 0; /* Remove left padding */
        transform: translateY(30px); /* Lower text slightly */
    }

    .text-content h1 {
        font-size: 6vw;
       
    }

    .text-content p {
        font-size: 3.5vw;
    }

    .buttons {
        text-align: center; /* Center the button */
        margin-left: 0;
        margin-right: 0;
    }


    .buttons .btn {
        display: inline-block;
        padding: 12px 24px; /* Maintain reduced padding */
        font-size: 16px;
        text-align: center;
        width: auto;
    }

    .image-content {
        max-width: 60%; /* Reduce image size */
        margin: 50px auto 0; /* Center the image */
        left: 0; /* Remove left offset */
    }

    .image-content img {
        max-width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .text-content {
        max-width: 90%;
        text-align: center;
        padding-left: 6%;
        transform: translateY(30px);
        margin-right: 50px;
    }

    .text-content h1 {
        font-size: 7vw;
    }

    .text-content p {
        font-size: 4vw;
    }

    .buttons {
        text-align: center;
        margin-left: 6%;
        margin-top: 20px;
        margin-right: 55px;
    }

    .buttons .btn {
        display: inline-block;
        padding: 10px 20px; /* Further reduced padding for smaller screens */
        font-size: 14px;
        text-align: center;
        width: auto;
        margin-left: 30px;
        
    }

    .image-content {
        max-width: 65%;
        left: -5%;
        transform: translateY(15px);
        margin-left: 50px;
    }

    .image-content img {
        width: 85%;
    }
}
/* Features Section */
.features-section {
    background: #0e1126;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

/* Badge */
.badge {
    display: inline-block;
    background: #305CDE;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Heading Styles */
.features-title {
    font-size: 40px; /* Increased font size */
    font-weight: bold;
    margin-top: 10px;
    color: white; /* Dark blue for contrast */
}

.features-title span {
    color: #305CDE;
}

.features-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 30px;
    opacity: 0.8;
    color: white; /* Ensure text is readable */
}

/* Buttons */
.features-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.demo-btn {
    background: #1E3A8A;
    color: white;
    border: 2px solid #305CDE;
}

.buy-btn {
    background: linear-gradient(45deg, #305CDE, #4F8CFF);
    color: white;
}

.demo-btn:hover {
    background: #305CDE;
    color: #fff;
}

.buy-btn:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr); /* One card per row on small screens */
    }
}

/* Feature Card */
.feature-card {
    background: #12172b;
    /* White background for contrast */
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    color:  linear-gradient(180deg, #DBC11C, #F4EC74);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(3, 3, 119, 0.3);
}

/* Feature Icon */
.feature-icon {
    font-size: 30px;
    color: #E0F2FF;
    margin-bottom: 15px;
}

/* Feature Title */
.feature-title {
    font-size: 22px;
    font-weight: bold;
}

/* Feature Description */
.feature-desc {
    font-size: 16px;
    opacity: 0.8;
    color: #333;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
    .empty-card {
        display: none;
    }
    
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller tablets */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column for mobile */
    }
    .features-title {
        font-size: 28px;
    }
    .features-subtitle {
        font-size: 16px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.image-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 15px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    transition: 0.3s;
}

.buy {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
}

.preview {
    background: black;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}



/* Typing Effect */
.typing-effect::after {
    content: '|';
    display: inline-block;
    animation: typing 1s steps(1) infinite;
}

@keyframes typing {
    50% { opacity: 0; }
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        height: auto;
    }

    .container {
        flex-direction: column; /* Stack elements in tablet view */
        align-items: center;
        text-align: center;
        
    }

    .text-content {
        margin-top: 100px;  /* Push text down if needed */
        text-align: center;
    }

    .image-content {
        max-width: 80%;
        justify-content: center;
        margin-top: 50px;
    }

    .image-content img {
        width: 90%; /* Increase image size for tablets */
        max-width: 450px; /* Increase maximum width */
        max-height: 450px; /* Increase height */
    }
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      /* Ensure text content is fully visible */
      .text-content {
        max-width: 100%;
        margin-top: 50px;
        transform: none;
        animation: fadeInUp 0.8s ease-out forwards;
      }
      
      /* Scale down the image for mobile */
      .image-content {
        justify-content: center;
        top: 0;
        margin-top: 20px;
      }
      
      .image-content img {
        width: 85%;       /* Reduce width */
        max-width: 400px; /* Optional: limit maximum width */
           /* Maintain aspect ratio */
        max-height: 400px; /* Limit height for mobile */
      }
      
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .text-content {
        max-width: 100%;
        margin-top: 100px;
        transform: none;
        animation: fadeInUp 0.8s ease-out forwards;
      }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }
    .btn {
        font-size: 12px;
        padding: 8px 12px;
      }
      
      .image-content img {
        width: 90%;       /* Further reduce width */
        max-width: 400px; /* Limit maximum width */
        max-height: 400px; /* Limit height for smaller screens */
      }
    }
    

/* Icons Section */
.icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.icons img {
    width: 50px;
    height: auto;
}

#slidee {
    padding: 50px 0;
    color: linear-gradient(to bottom, #1E3A8A, #305CDE);
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.sec-titlee h2 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 50px;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    position: relative;
    width: 100%;
    display: flex;
    animation: slideAnimation 36s infinite;
}

/* Ensure slides stack content vertically */
.slide1 {
    min-width: 100%;
    display: flex;
    flex-direction: column; /* Stack image and captions vertically */
    align-items: center; /* Center align content */
    text-align: center; /* Ensure text is centered */
    transition: opacity 1s ease-in-out;
}

.slide1 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.7;
}

/* Caption Styling */
.slide1 .captions {
    width: 80%; /* Adjust width for better readability */
    padding: 10px 0;
    color: white;
}

.slide1 .captions h3 {
    margin: 10px 0;
    font-size: 2rem;
    font-weight: bold;
    color:  rgb(255, 255, 255) /* Blue heading */
}

.slide1 .captions p {
    font-size: 1.5rem;
    color: white;
    line-height: 1.5;
}

/* Automatic Animation */
@keyframes slideAnimation {
    0% { transform: translateX(0); } /* First slide */
    16.66% { transform: translateX(0); } /* Stay on first slide */
    19.99% { transform: translateX(-100%); } /* Transition to second slide */
    33.33% { transform: translateX(-100%); } /* Stay on second slide */
    36.66% { transform: translateX(-200%); } /* Transition to third slide */
    50% { transform: translateX(-200%); } /* Stay on third slide */
    53.33% { transform: translateX(-300%); } /* Transition to fourth slide */
    66.66% { transform: translateX(-300%); } /* Stay on fourth slide */
    69.99% { transform: translateX(-400%); } /* Transition to fifth slide */
    83.33% { transform: translateX(-400%); } /* Stay on fifth slide */
    86.66% { transform: translateX(-500%); } /* Transition to sixth slide */
    100% { transform: translateX(-500%); } /* Stay on sixth slide */
}

.slides {
    animation: slideAnimation 20s infinite;
}

.how-it-works {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #1E3A8A, #305CDE);
    color: white;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #1E3A8A;
}

.icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #1E3A8A, #4F8CFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-container img {
    width: 40px;
    height: 40px;
}

.step h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

.step p {
    font-size: 14px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Centering the Section */
/* Centering the Section */
.section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: #305CDE;/*#ff8c00;  Matching background */
    padding: 0 5%; /* Adds equal space on both sides */
  }
  .form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}
  /* Wrapper Styling */
  .wrapper {
    max-width: 430px;
    width: 90%; /* Ensures responsiveness */
    background: #fff;
    padding: 34px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin: auto; /* Centers horizontally */
  }
  
  /* Heading Styling */
  .wrapper h2 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #333;
  }
  
  .wrapper h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #4070f4;
  }
  
  /* Form Styling */
  .wrapper form {
    margin-top: 30px;
  }
  
  .wrapper form .input-box {
    height: 52px;
    margin: 18px 0;
  }
  
  form .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #C7BEBE;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  /* Focus Effect */
  .input-box input:focus,
  .input-box input:valid {
    border-color: #4070f4;
  }
  
  /* Checkbox Policy */
  form .policy {
    display: flex;
    align-items: center;
  }
  
  form h3 {
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
  }
  
  /* Button Styling */
  .input-box.button input {
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #4070f4;
    cursor: pointer;
  }
  
  .input-box.button input:hover {
    background: #0e4bf1;
  }
  
  /* Centering Text */
  form .text h3 {
    color: #333;
    width: 100%;
    text-align: center;
  }
  
  form .text h3 a {
    color: #4070f4;
    text-decoration: none;
  }
  
  form .text h3 a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .form-container {
        flex-direction: column; /* Stack forms on smaller screens */
        align-items: center;
    }

    .wrapper {
        width: 90%; /* Make forms full width */
    }
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #131313;
}
.section-title span{
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight {
    color: #305CDE; /* Orange for emphasis */
}

.section-description {
    font-size: 18px;
    color: #555;
    margin: 10px auto 40px;
    max-width: 700px;
}

/* Layout Cards */
.layout-options {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.layout-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.layout-card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.layout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.layout-card:hover img {
    transform: scale(1.05);
}

/* Hover Effect - Overlay */
.layout-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.layout-card:hover .layout-info {
    transform: translateY(0);
}
.section-description {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif; /* Modern, stylish font */
    color: #333;
    margin: 10px auto 40px;
    max-width: 700px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Gradient Text Effect on Hover */
.section-description:hover {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    cursor: default;
}

/* Smooth Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Badge */
.badge {
    display: inline-block;
    background: #305CDE;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Heading Styles */
.features-title {
    font-size: 40px; /* Increased font size */
    font-weight: bold;
    margin-top: 10px;
    color: #ffffff; /* Dark blue for contrast */
}

.features-title span {
    color: #305CDE;
}

.features-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 30px;
    opacity: 0.8;
    color: rgb(251, 251, 251); /* Ensure text is readable */
}

/* Buttons */
.features-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.demo-btn {
    background: #1E3A8A;
    color: white;
    border: 2px solid #305CDE;
}

.buy-btn {
    background: linear-gradient(45deg, #305CDE, #4F8CFF);
    color: white;
}

.demo-btn:hover {
    background: #305CDE;
    color: #fff;
}

.buy-btn:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr); /* One card per row on small screens */
    }
}

/* Feature Card */
.feature-card {
  /* White background for contrast */
    background: #12172b;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    color:  linear-gradient(180deg, #DBC11C, #F4EC74);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(3, 3, 119, 0.3);
}

/* Feature Icon */
.feature-icon {
    font-size: 30px;
    color: #E0F2FF;
    margin-bottom: 15px;
}

/* Feature Title */
.feature-title {
    font-size: 22px;
    font-weight: bold;
}

/* Feature Description */
.feature-desc {
    font-size: 16px;
    opacity: 0.8;
    color: #333;
}
/* Founder’s Quote Section */
#facts {
    position: relative;
    
    color: #ffffff;
    padding: 200px 0; /* Increased padding for more height */
    text-align: center;
    min-height: 350px; /* Ensures enough height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Dark Overlay for Better Readability */
.parallax-overlay {
    background: rgba(0, 0, 0, 0.6); /* Dark transparent overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec-title {
    text-align: center;
    width: 100%;
}

.sec-title h2 {
    margin-left: 10%;
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}
.sec-title h2 span{
    background: linear-gradient(to right, #A3C8FF, #C2DEFF, #E0F2FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

/* Founder Section */
.founder-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    
}
.founder-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    color: #ffffff;
    position: relative;
}



.founder-quote .quote {
    flex: 2;
    text-align: left;
    padding-left: 20px;
}

.founder-quote .quote h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    align-items: center;
    margin-left: 30%;
}

.founder-quote .author {
    font-style: italic;
    font-size: 18px;
    margin-top: 200px;
    color: #cccccc;
    margin-left: 20px;

}

 
.founder-image img {
    width: 320px;
    height: auto;
    border-radius: 10px; 
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    margin-left: 150px;
}
@media (max-width: 1024px) {
    .founder-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 15px;
    }

    .founder-quote {
        padding: 30px;
    }

    .founder-quote .quote {
        padding-left: 0;
        text-align: center;
    }

    .founder-quote .quote h3 {
        font-size: 16px;
        margin-left: 0;
    }

    .founder-quote .author {
        margin-top: 20px;
        text-align: center;
        margin-left: 0;
    }

    .founder-image img {
        width: 250px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    #facts {
        padding: 100px 0;
    }

    .sec-title h2 {
        font-size: 28px;
        margin-left: 0;
    }

    .founder-quote {
        padding: 20px;
    }

    .founder-quote .quote h3 {
        font-size: 14px;
        line-height: 1.4;
    }

    .founder-quote .author {
        font-size: 16px;
    }

    .founder-image img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .founder-quote {
        padding: 20px;
        text-align: center;
    }

    .founder-quote .quote h3 {
        font-size: 12px;
        margin-left: 0;
    }

    .founder-quote .author {
        font-size: 14px;
        margin-top: 10px; /* Reduce spacing */
        margin-left: 0;
    }

    .founder-image img {
        width: 180px;
        margin-left: auto;
        margin-right: auto;
        display: block; /* Center the image */
    }
}


/* Modules Section */
.modules-section {
    background: #fdf8f4;
    text-align: center;
    padding: 80px 20px;
}

/* Header */
.modules-title {
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.modules-title span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modules-subtitle {
    font-size: 18px;
    font-family: 'Poppins', sans-serif; /* Modern, stylish font */
    color: #555;
    margin-top: 5px;
}

/* Tabs */
.modules-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
    gap: 10px;
}

.tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.tab i {
    font-size: 18px;
}

.tab.active, .tab:hover {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    color: white;
    transform: scale(1.05);
}

/* Container for images */
.modules-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Image container with relative positioning */
.image-container {
    position: relative;
    width: 30%;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
}

/* Default image style */
.image-container img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}

/* Blur effect on hover */
.image-container:hover img {
    filter: blur(5px);
    transform: scale(1.1);
}

/* View Demo Text */
.image-container .view-demo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(107, 105, 102, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show text on hover */
.image-container:hover .view-demo {
    opacity: 1;
}
.solution-section {
    background-color: #0e0e1a; /* Dark background */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Solution Heading */
.solution-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-section h2 .highlight {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Solution Description */
.solution-section p {
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Button Container */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */


/* Email Button */

/* Animated Dots */
.animated-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: floating 3s infinite ease-in-out;
}

.dot-top {
    top: 15px;
    left: 40px;
}

.dot-bottom {
    bottom: 20px;
    right: 40px;
}

/* Floating Animation */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-section h2 {
        font-size: 24px;
    }

    .solution-section p {
        font-size: 14px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .animated-dots {
        width: 30px;
        height: 30px;
    }
}


.container .row .sec-title {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container .row .sec-title h2 {
    margin-left: 0; /* Remove left margin */
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center; /* Ensures text inside is centered */
}
    .sec-title h2 span{
        background: linear-gradient(to right, #0A1F44, #102A75, #1E3A8A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }
  
    .team-section {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        padding: 40px 20px;
        flex-direction: row;
    }
    
    .row1 {
        display: flex;
        justify-content: center; 
        gap: 20px;
        flex-wrap: nowrap; /* Prevents wrapping */
    }
    
    .team-member {
        text-align: center;
        width: 200px;
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    
    .team-member:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
        transition: transform 0.3s ease-in-out;
    }
    
    .team-member:hover .team-photo {
        transform: scale(1.15);
    }
    
    .team-name {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
        transition: color 0.3s ease-in-out;
    }
    
    .team-role {
        font-size: 14px;
        color: #777;
        transition: color 0.3s ease-in-out;
    }
    
    .team-member:hover .team-role {
        color: #444;
    }
    @media (max-width: 1024px) {
        .team-section {
            padding: 30px 5%;
        }
        
        .row1 {
            flex-wrap: wrap; /* Allow wrapping on tablets */
            justify-content: center; /* Center items */
        }
    
        .team-member {
            width: 30%; /* Three per row on tablets */
            max-width: 250px; /* Prevents stretching */
            margin-bottom: 20px;
        }
    
        .team-photo {
            width: 130px; /* Adjust image size */
            height: 130px;
        }
    
        .team-name {
            font-size: 15px;
        }
    
        .team-role {
            font-size: 14px;
        }
    }
    @media (max-width: 768px) {
        .team-section {
            padding: 20px 10px;
        }
        .team-member {
            width: 45%; /* Two per row on tablets */
            margin-bottom: 20px;
        }
        .team-photo {
            width: 120px;
            height: 120px;
        }
        .team-name {
            font-size: 14px;
        }
        .team-role {
            font-size: 13px;
        }
    }
    
    @media (max-width: 480px) {
        .team-section {
            flex-direction: column; /* Stack items vertically */
            padding: 15px 5px;
        }
        .row1 {
            flex-direction: column; /* Stack rows vertically */
            align-items: center;
        }
        .team-member {
            width: 100%; /* Full width for each member */
            margin-bottom: 15px;
        }
        .team-photo {
            width: 100px;
            height: 100px;
        }
        .team-name {
            font-size: 13px;
        }
        .team-role {
            font-size: 12px;
        }
    }
    

    .why-dreampos {
        text-align: center;
        padding: 60px 20px;
        background: #fdfaf5;
        margin-top: 20px;
    }
    
    /* Title Styling */
    .why-dreampos h2 {
        font-size: 36px;
        font-weight: bold;
        color: #131313;
    }
    
    .why-dreampos .highlight {
        background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* Subtitle */
    .why-dreampos p {
        font-size: 22px;
        color: black;
        margin: 12px 0 35px;
        font-weight: 700;
    }
    
    /* Stats Container */
    .stats-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }
    
    /* Stat Cards */
    .stat-card {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 200px;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    }
    
    /* Hover Effect */
    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }
    
    /* Number Styling */
    .stat-number {
        font-size: 36px;
        font-weight: 600;
        background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
        text-align: center;
        min-width: 50px;
    }
    
    /* Description Text */
    /* Description Text Below Numbers */
.stat-card p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif; /* Modern and clean font */
    color: black; /* Changed to black */
    margin-top: 8px;
    font-weight: 600;
    line-height: 1.5; /* Enhances readability */
}
/* Customer Reviews Section */
.customer-reviews {
    background-color: #0c0c1d; /* Dark background */
    color: #fff; /* White text */
    text-align: center;
    padding: 60px 20px;
}

/* Heading Styles */
.customer-reviews h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.customer-reviews h2 span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subheading */
.customer-reviews p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #b0b0b0;
}

/* Review Container */
.review-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Review Card */
.review-card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    max-width: 350px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 10px rgba(8, 0, 93, 0.3);
}

/* Quote Icon */
.review-card .quote-icon {
    font-size: 30px;
    color: #0055b6;
    margin-bottom: 10px;
}

/* Review Text */
.review-card p {
    font-size: 16px;
    color: #dcdcdc;
    margin-bottom: 15px;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

/* User Image */
.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Rating Stars */
.rating {
    margin-top: 10px;
    color: #ffee00;
    font-size: 18px;
}
/* Features Section */
.features {
    background-color: #fffaf5; /* Light cream background */
    text-align: center;
    padding: 80px 20px;
}

/* Features Heading */
.features h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.features h2 span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Subheading */
.features p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Item */
.feature-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 77, 0, 0.2);
}

/* Feature Icon */
.feature-item img {
    width: 60px;
    margin-bottom: 15px;
}

/* Feature Title */
.feature-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}
/* Contact Section */
.contact-section {
    background-color: #0e0e1a; /* Dark background */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Contact Heading */
.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section h2 span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-section {
    background-color: #0e0e1a; /* Dark background */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Contact Heading */
.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section h2 span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Description */
.contact-section p {
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Button Container */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
/* Buttons */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* Remove underline and ensure white text */
.contact-btn a {
    color: white;
    text-decoration: none; /* Removes underline */
    display: block; /* Ensures full button clickability */
}

/* Email Button */
.email-btn {
    background: #0e0e1a;
    color: white;
    border: 2px solid white;
}

.email-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(1, 1, 152, 0.5);
}

/* Call Button */
.call-btn {
    background: #0e0e1a;
    color: white;
    border: 2px solid white;
}

.call-btn:hover {
    transform: scale(1.05);
    background: #222;
}

/* Animated Dots */
.animated-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: floating 3s infinite ease-in-out;
}

.dot-top {
    top: 15px;
    left: 40px;
}

.dot-bottom {
    bottom: 20px;
    right: 40px;
}

/* Floating Animation */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    background: white; /* White container */
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: black; /* Changed font color to black */
    padding: 15px;
    border-radius: 10px;
}

.faq-section h2 span {
    background: linear-gradient(to right, #1E3A8A, #305CDE, #4F8CFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq-section p {
    font-size: 16px;
    color: black; /* Ensures paragraph text is black */
}

/* FAQ Container */
.faq-container {
    margin-top: 20px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Checkbox (Hidden) */
.faq-item input {
    display: none;
}

/* FAQ Label */
.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: white;
    border-radius: 10px;
    color: black;
}

/* FAQ Icon */
.faq-icon {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

/* FAQ Content (Initially Hidden) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0 15px;
    transition: max-height 0.3s ease-in-out, padding 0.3s;
    color: black;
}

/* Show Content when Checked */
.faq-item input:checked + .faq-label + .faq-content {
    max-height: 200px;
    padding: 15px;
}

/* Rotate Plus Icon when Active */
.faq-item input:checked + .faq-label .faq-icon {
    transform: rotate(45deg);
}
.faq-section .accordion label {
    font-size: 18px;
    font-weight: 600;
    color: black; /* Ensures question text is black */
    display: block;
    padding: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Accordion Content (Answers) */
.faq-section .accordion-content {
    font-size: 16px;
    color: orange; /* Ensures answer text is black */
    padding: 10px 15px;
}
/* 
  .footer {
    background: #0e1126;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    position: relative;
}
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} */
/* 
.row {
    display: flex;
    justify-content: space-between; /* Distributes columns evenly 
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens 
} */
/* 
.footer-single {
    flex: 1;
    min-width: 250px; 
    margin: 10px;
    text-align: left;
}
.footer-single img {
    width: 200px;
    height: auto; 
}

.footer-single h6 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-single ul {
    list-style: none;
    padding: 0;
}

.footer-single ul li {
    margin-bottom: 8px;
}

.footer-single ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: 0.3s;
}

.footer-single ul li a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    padding-top: 10px;
    
}

.footer-social li {
    list-style: none;
}

.footer-social li a {
    color: #ffffff;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social li a:hover {
    color: #1E4DB7;
}


/* Responsive Design 
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stacks sections vertically 
        text-align: center;
    }
    
    .footer-single {
        min-width: 100%; /* Full width on small screens 
        text-align: center;
    }

    .footer-social {
        justify-content: center; /* Centers icons 
    }
} */
.footer {
    background: #0e1126;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    position: relative;
}
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.row {
    display: flex;
    justify-content: space-between; /* Distributes columns evenly */
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.footer-single {
    flex: 1;
    min-width: 250px; /* Prevents columns from getting too small */
    margin: 10px;
    text-align: left;
}
.footer-single img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintains aspect ratio */
}

.footer-single h6 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-single ul {
    list-style: none;
    padding: 0;
}

.footer-single ul li {
    margin-bottom: 8px;
}

.footer-single ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: 0.3s;
}

.footer-single ul li a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    padding-top: 10px;
    
}

.footer-social li {
    list-style: none;
}

.footer-social li a {
    color: #ffffff;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social li a:hover {
    color: #1E4DB7;
}


/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stacks sections vertically */
        text-align: center;
    }
    
    .footer-single {
        min-width: 100%; /* Full width on small screens */
        text-align: center;
    }

    .footer-social {
        justify-content: center; /* Centers icons */
    }
}
/* Floating Social Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
}

/* Chat Floating Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-button p {
    color: #fff;
    font-size: 12px;
    transform: rotate(-20deg);
    margin-bottom: 5px;
}

.chat-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.chat-icon img:hover {
    transform: scale(1.1);
}