/* Global Styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
}

/* Fixed font sizes and line-height */
h1 {
    font-size: 50px !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

h2 {
    font-size: 40px !important;
    font-weight: 600;
    line-height: 1.3 !important;
    margin-bottom: 22px;

}

h3 {
    font-size: 30px !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

h4 {
    font-size: 24px !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

h5 {
    font-size: 19px !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

h6 {
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

p {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.3 !important;
    color: #555;
}

a {
    font-size: 16px !important;
    line-height: 1.3 !important;
}

li {
    font-size: 16px !important;
    line-height: 1.3 !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(10, 25, 47, 0.37);*/
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.2));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 60px;
    text-align: left;
}

.content h1 {
    margin-bottom: -21px;
}

.content p {
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.3;
    box-sizing: border-box;
}

.btn.primary,
.btn.secondary {
    padding: 12px 20px;
    width: 180px;
    min-height: 44px;
}

.btn.primary {
    background-color: #115da6;
    color: white;
    border: 2px solid #115da6;
}

.btn.primary:hover {
    background-color: #0e4a85;
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background-color: white;
    color: #115da6;
}

.timeline-block img {
    width: 660px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Responsive Styles */
@media (max-width: 1200px) {
    .content {
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .content {
        margin-left: 0;
        margin-bottom: 60px;
        text-align: center;
        max-width: 90%;
    }

    .content h1 {
        font-size: 40px !important;
    }

    .content p {
        font-size: 22px !important;
    }

    .buttons {
        justify-content: center;
    }

    .btn.primary,
    .btn.secondary {
        width: 160px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 3%;
        height: 80vh;
    }

    .content {
        margin-bottom: 40px;
    }

    .content h1 {
        font-size: 36px !important;
    }

    .content p {
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }

    .content {
        margin-bottom: 30px;
    }

    .content h1 {
        font-size: 30px !important;
    }

    .content p {
        font-size: 18px !important;
    }

    .btn.primary,
    .btn.secondary {
        width: 140px;
        padding: 8px 12px;
        font-size: 14px !important;
    }
}

/* Partners Section */
.partners {
    background-color: #fafafa;
    padding: 60px 5%;
    color: #0a192f;
}

.partner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.partner-stats {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
}

.partner-stats strong {
    font-size: 32px;
    color: #115da6;
    margin: 0 10px;
}

.award-note {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #73bc4f;
}

.award-note img {
    height: 24px;
    width: 24px;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 280px;
    height: 50px;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 15s linear infinite;
    white-space: nowrap;
}

.slider-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.slider-track img:hover {
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Responsive Styles */
@media (max-width: 1200px) {
    .partner-container {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .partner-container {
        flex-direction: column;
        text-align: center;
    }

    .partner-text {
        text-align: center;
    }

    .partner-text,
    .slider-wrapper {
        width: 100%;
        min-width: 0;
    }

    .slider-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 40px 3%;
    }

    .partner-stats {
        font-size: 18px;
    }

    .partner-stats strong {
        font-size: 28px;
    }

    .slider-track img {
        height: 35px;
    }
    .timeline-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
}

@media (max-width: 576px) {
    .partners {
        padding: 30px 2%;
    }

    .partner-stats {
        font-size: 16px;
    }

    .partner-stats strong {
        font-size: 24px;
    }

    .award-note {
        flex-direction: column;
        text-align: center;
    }

    .slider-track img {
        height: 30px;
    }
}

/* Offer Section (Included for completeness, as it’s in HTML) */
.offer-section {
    padding: 60px 20px;
    text-align: center;
}

/* .offer-title {
    font-weight: 500;
    margin-bottom: 40px;
    color: #3a3a3a !important;
} */

.offer-block-home{
   text-align: center;
  font-size: 40px; /* H2 - 40px */
  line-height: 1.3; /* LH - 1.3 */
  margin-bottom: 4rem;
  font-weight: 500;
  color: #115da6;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.card {
    background: #fafafa;
    border: 1px solid #fafafa;
    border-radius: 10px;
    width: 330px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 100%;
}

.card-heading {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: #115da6 !important;
}

.card-subheading {
    font-size: 16px;
    color: #555;
    margin: 6px 0 16px;
    text-align: center;
}

.card-description {
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-list {
    list-style-type:circle;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555 !important;
}

.red-btn {
    background-color: #115da6;
    color: white;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.red-btn:hover {
    background-color: #b71c1c;
}

.red {
    color: #d32f2f;
}

.pink {
    color: #c2185b;
}

.orange {
    color: #f57c00;
}

/* Offer Responsive Styles */
@media (max-width: 1200px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 40px 15px;
    }

    .offer-title {
        font-size: 36px !important;
    }

    .card {
        padding: 20px 15px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .offer-section {
        padding: 30px 10px;
    }

    .offer-title {
        font-size: 32px !important;
    }

    .card {
        padding: 15px 10px;
    }

    .card-heading {
        font-size: 26px !important;
    }

    .red-btn {
        padding: 10px;
        font-size: 14px !important;
    }
}

/* Benefits Grid */
.benefits-section {
    padding: 60px 20px;
    max-width: 1099px;
    margin: 0 auto;
}

.benefits-header {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.text-block-h2{
    color: #115da6 !important;
}

.text-block h2 span {
    color: #115da6;
}

.text-block p {
    margin-bottom: 16px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #115da6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    min-height: 44px;
}

.cta-button:hover {
    background-color: #0e4a85;
}

.image-placeholder img {
    width: 160px;
    height: auto;
    margin-top: 20px;
    margin-right: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.benefit-card {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-card .icon {
    font-size: 24px;
    color: #6eb945;
    margin-bottom: 12px;
    display: block;
}

.benefit-card h3 {
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 8px;
    color: #115da6;
}

/* Benefits Responsive Styles */
@media (max-width: 1200px) {
    .benefits-section {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .benefits-header {
        flex-direction: column;
        text-align: center;
    }

    .image-placeholder img {
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 30px 10px;
    }

    .text-block h2 {
        font-size: 32px !important;
    }

    .image-placeholder img {
        width: 120px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 14px !important;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 30px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-header {
    text-align: left;
    margin-bottom: 40px;
}

.testimonial-header .red-bar {
    width: 40px;
    height: 6px;
    background-color: #6eb945;
    border-radius: 4px;
    margin-bottom: 10px;
}

.testimonial-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #115da6 !important;
}

.testimonial-header p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 8px;
}

.carousel-wrapper {
    position: relative;
  overflow: hidden;
}

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
flex: 0 0 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-text p{
    font-size: 0.9rem ;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.3;
    -webkit-text-size-adjust: 100%;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-footer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffeef0;
    padding: 8px;
}

.testimonial-footer h4 {
    font-size: 16px !important;
    font-weight: 600;
    margin: 0;
    color: #555;
}

.testimonial-footer p {
    font-size: 0.85rem;
    color: #555;
    margin: 2px 0 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* Testimonial Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-section {
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .testimonial-card {
    flex: 0 0 33.3333%;
  }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-header {
        text-align: center;
    }

    .testimonial-header .red-bar {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer */
.footer {
    background: #115da6;
    padding: 80px 20px;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    border-bottom-left-radius: 100% 60px;
    border-bottom-right-radius: 100% 60px;
    z-index: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1036px;
    margin: 37px auto 0;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.footer-button {
    background: #ffffff;
    color: #115da6;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.25);
    min-height: 44px;
}

.footer-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 16px rgba(255, 75, 43, 0.35);
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 15px;
    }

    .footer-text {
        font-size: 24px;
    }

    .footer-button {
        padding: 12px 30px;
    }
    .testimonial-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
    .footer-content {
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 10px;
    }

    .footer-text {
        font-size: 20px;
    }

    .footer-button {
        padding: 10px 24px;
        font-size: 14px !important;
    }
}