* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}



.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 7px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    border: 2px solid #134356;
    color: #134356;
}

.btn-primary {
    background: #134356;
    color: white;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31, 85, 130, 0.25);
}

/* Hero Section */
.hero {
    background: #f7f9fb;
    padding: 60px 0 80px;
    padding-bottom:25px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 750;
    color: #134356;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-family: "IBM Plex Sans", sans-serif;
}

.hero-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #a8d8ea 0%, #b8e6f0 50%, #d0f0fd 100%);
    border-radius: 60% 40% 60% 40% / 70% 50% 50% 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotate(-5deg);
}

.person-placeholder {
    width: 220px;
    height: 180px;
    background: #134356;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    transform: rotate(5deg);
    box-shadow: 0 10px 30px rgba(26, 76, 92, 0.2);
}

/* Navigation */
.navigation {
    /* background: #f7f9fb; */
    padding: 0 0 40px;
    transition: all 0.3s ease;
}

.navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    /* background: #ffffff; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    padding: 10px 0;
}

.navigation.sticky .nav-container {
    padding: 15px 60px;
}

.nav-container {
    background: white;
    border: 2px solid #00a0e2;
    border-radius: 50px;
    padding: 35px 60px;
    max-width: 1350px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #0b1b35;
    font-weight: 750;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

.nav-menu li a:hover {
    color: #134356;
    border-bottom-color: #134356;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.stats-illustration {
    height: 400px;
    /* background: #f8f9fa; */
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.stats-text {
    padding-left: 20px;
}

.stats-subtitle {
    color: #ff5757;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: "IBM Plex Sans", sans-serif;
}

.stats-title {
    font-size: 40px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 18px;
    line-height: 1.2;
    font-family: "IBM Plex Sans", sans-serif;
}

.stats-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.rupee {
    background: #ffcccc;
    color: #e91e63;
}

.stat-icon.handshake {
    background: #d8f3cc;
    color: #4caf50;
}

.stat-icon.target {
    background: #efd3f7;
    color: #9c27b0;
}

.stat-icon.people {
    background: #b3e0e8;
    color: #2196f3;
}

.stat-content {
    flex: 1;
}

.stat-text {
    font-size: 24px;
    font-weight: 700;
    color: #00a0e2;
    margin-bottom: 4px;
    font-family: "IBM Plex Sans", sans-serif;
}
.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #00a0e2;
    margin-bottom: 4px;
    font-family: "IBM Plex Sans", sans-serif;
}

.stat-label {
    font-size: 13px;
    color: #134356;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-family: "IBM Plex Sans", sans-serif;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.process-title {
    font-size: 44px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 40px;
    line-height: 1.2;
}

.process-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.process-btn {
    padding: 7px 30px;
    border: 2px solid #134356;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 30px;
    font-family: "IBM Plex Sans", sans-serif;
}

.process-btn.active {
    background: #134356;
    color: white;
}

.process-btn.inactive {
    background: white;
    color: #134356;
}

.process-btn-icon {
    font-size: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    /* max-width: 1000px; */
    /* margin: 0 auto; */
    transition: opacity 0.3s ease;
}

.process-step {
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
    position: relative;
}

.process-step-inner {
    padding: 30px 20px;
    background: #d3f2ff6b;
    border-radius: 20px;
}

.process-step:hover {
    transform: translateY(-2px);
}

.step-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #134356;
    font-weight: 500;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.step-icon-1 { color: #ef4444; }
.step-icon-2 { color: #22c55e; }
.step-icon-3 { color: #a855f7; }
.step-icon-4 { color: #06b6d4; }

.step-number.step-1 { background: #ef4444; }
.step-number.step-2 { background: #22c55e; }
.step-number.step-3 { background: #a855f7; }
.step-number.step-4 { background: #06b6d4; }

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 12px;
    font-family: "IBM Plex Sans", sans-serif;
}

.step-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.3;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-subtitle {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.partners-title {
    font-size: 44px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partners-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

.partners-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider {
    display: flex;
    transition: transform 0.5s linear;
    gap: 0;
    padding: 20px 0;
    animation: infiniteScroll 20s linear infinite;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .partners-slider {
        animation-duration: 15s; /* Faster on mobile */
    }
    
    .partner-logo {
        /* min-width: 120px; */
        margin-right: 20px;
    }
    
    .partner-logo img {
        max-width: 120px;
    }
}

/* Products Section Responsive Styles */
@media (max-width: 1024px) {
    .products-slider {
        gap: 15px;
    }
    
    .product-card {
        min-width: 280px;
        padding: 35px 25px;
    }
    
    .product-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .product-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .icon-placeholder {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-header {
        margin-bottom: 40px;
    }
    
    .products-slider {
        gap: 15px;
        padding: 15px 0;
    }
    
    .product-card {
        min-width: 260px;
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .product-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .product-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon-placeholder {
        width: 35px;
        height: 35px;
    }
    
    .products-controls {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 50px 0;
    }
    
    .products-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .products-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .products-slider {
        gap: 12px;
        padding: 10px 0;
        /* Enable horizontal scroll on mobile */
        width: max-content;
    }
    
    .product-card {
        min-width: 240px;
        max-width: 240px;
        padding: 25px 16px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .product-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .icon-placeholder {
        width: 30px;
        height: 30px;
    }
    
    /* Hide slider controls on mobile for better UX */
    .products-controls {
        display: none;
    }
    
    /* Add scroll indicator for mobile */
    .products-slider-container::after {
        content: "← Swipe to explore →";
        display: block;
        text-align: center;
        font-size: 12px;
        color: #6b7280;
        margin-top: 15px;
        font-family: "DM Sans", sans-serif;
        opacity: 0.7;
    }
}

.partner-logo {
    width: fit-content;
    /* min-width: 140px; */
    /* background: white; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease;
    /* border: 1px solid #e5e7eb; */
    margin-right: 30px;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 200px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-placeholder {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partners-slider-container .slider-controls {
    display: none; /* Hide controls for infinite scroll partners */
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #134356;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #0f3a4a;
    transform: scale(1.05);
}

.slider-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #eaf7fc, #ffffff);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Swiper Container */
.products-swiper {
    width: 100%;
    padding: 20px 0 60px 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    max-width: calc(100% - 40px);
}

.swiper-wrapper {
    align-items: stretch;
}

.products-swiper .swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    padding-bottom:25px;
    text-align: center;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card-inner{
    background: #d3f2ff6b;
    padding:40px 30px;
    border-radius: 20px;
    padding-bottom:0px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(19, 67, 86, 0.15);
    border-color: #134356;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

.product-card:hover .product-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #134356 0%, #0f3a4a 100%);
}

.product-card:hover .icon-placeholder {
    background: linear-gradient(135deg, #a8d8ea 0%, #b8e6f0 100%);
    border-color: white;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #a8d8ea 0%, #b8e6f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: 2px solid #134356;
    transition: all 0.3s ease;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 16px;
    font-family: "IBM Plex Sans", sans-serif;
}

.product-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: "DM Sans", sans-serif;
    flex-grow: 1;
}

.product-btn {
    background: #134356;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom:-20px;
}

.product-btn:hover {
    background: #0f3a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(19, 67, 86, 0.25);
}

.products-controls {
    margin-top: 40px;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: white;
    padding-top: 40px;
}

.calculator-content {
    max-width: 60%;
    /* margin: 0 auto; */
}

.calculator-text {
    margin-bottom: 50px;
    text-align: left;
}

.calculator-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}



.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "IBM Plex Sans", sans-serif;
}

.form-input,
.form-select {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #5c92d9;
    background: white;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
}

/* placeholder color */
.form-input::placeholder,
.form-select::placeholder {
    color: #5c92d9;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #6b9bd8;
    box-shadow: none;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 20px;
    padding-right: 60px;
    color: #6b9bd8;
    font-weight: 500;
}

.calculate-btn {
    width: 100%;
    background: #134356;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "IBM Plex Sans", sans-serif;
    margin-top: 0;
    height: 62px;
}

.calculate-btn:hover {
    background: rgb(25, 58, 62);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 91, 107, 0.3);
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-icon {
    font-size: 20px;
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #101c34;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    color: white !important;
}

/* Testimonials Swiper Container */
.testimonials-swiper {
    width: 100%;
    padding: 20px 0 60px 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    max-width: calc(100% - 40px);
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-placeholder {
    font-size: 24px;
    color: #999;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #134356;
    margin-bottom: 8px;
    font-family: "IBM Plex Sans", sans-serif;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-family: "DM Sans", sans-serif;
    flex-grow: 1;
}

/* Custom Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #134356;
    border-radius: 50%;
    color: #ff5757;
    box-shadow: 0 4px 12px rgba(19, 67, 86, 0.25);
    transition: all 0.3s ease;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Wrapper to create space for external navigation */
.swiper-container-wrapper {
    position: relative;
    padding: 0 60px; /* Space for external buttons */
}

/* Position external navigation buttons outside swiper container */
.swiper-container-wrapper .swiper-button-next {
    right: 10px;
}

.swiper-container-wrapper .swiper-button-prev {
    left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #0f3a4a;
    transform: translateY(-50%) scale(1.1);
}

/* Custom Swiper Pagination Styles */
.products-swiper .swiper-pagination,
.testimonials-swiper .swiper-pagination {
    bottom: 10px;
}

.products-swiper .swiper-pagination-bullet,
.testimonials-swiper .swiper-pagination-bullet {
    background: #ff5757;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active,
.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .swiper-container-wrapper {
        padding: 0 50px; /* Reduce padding on tablets */
    }
    
    .swiper-container-wrapper .swiper-button-next {
        right: 5px;
    }
    
    .swiper-container-wrapper .swiper-button-prev {
        left: 5px;
    }
}

/* Hide navigation on mobile for cleaner look */
@media (max-width: 768px) {
    .swiper-container-wrapper {
        padding: 0; /* Remove padding on mobile */
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .products-swiper,
    .testimonials-swiper {
        padding: 20px 0 40px 0;
    }
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: #ffffff;
}

.get-started-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.get-started-text {
    padding-right: 40px;
    margin-top:auto;
    margin-bottom:auto;
}

.get-started-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 24px;
    font-family: "DM Sans", sans-serif;
}

.contact-form {
    background: #d3f2ff6b;
    padding: 40px;
    border-radius: 20px;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
    accent-color: #6b9bd8;
    flex-shrink: 0;
}

.checkbox-text {
    color: #6b7280;
    font-family: "DM Sans", sans-serif;
}

.terms-link {
    color: #6b9bd8;
    text-decoration: underline;
}

.terms-link:hover {
    color: #134356;
}

.send-message-btn {
    width: max-content;
    background: #134356;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "IBM Plex Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-message-btn:hover {
    background: rgb(20, 44, 48);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 91, 107, 0.3);
}

/* Contact Form Specific Input Styling */
.contact-input {
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: #6b9bd8;
    background: #f8fafe;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #6b9bd8;
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 155, 216, 0.1);
}

.contact-input::placeholder {
    color: #6b9bd8;
    opacity: 0.8;
}

/* Get Started Section Responsive */
@media (max-width: 1024px) {
    .get-started-content {
        gap: 60px;
    }
    
    .get-started-text {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .get-started-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .get-started-text {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer Responsive */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-right{
        margin-left: 25px;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: start!important;
        margin-left:25px;
    }
    
    .contact-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        margin-left: 0;
        justify-content: center;
    }
}

/* Footer Section */
.footer-section {
    background: #101c34;
    padding: 60px 0 0;
    color: white;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #102c54;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 50px;
}

.trademark {
    font-size: 12px;
    color: white;
    font-weight: 500;
    margin-top: -10px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif;
    margin: 0;
    letter-spacing: 1px;
}

.company-address p {
    color: #94a3b8;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
    margin: 1px 0;
}

.company-address strong {
    color: white;
    font-weight: 600;
}

.view-map {
    margin-top: 10px;
}

.map-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #ff8c66;
}

.map-link i {
    font-size: 14px;
}

/* Footer Right - Links */
.footer-right {
    display: flex;
    align-items: flex-start;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-menu li a:hover {
    color: #ff6b35;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.contact-section {
    display: flex;
    gap: 40px;
    /* align-items: center; */
}

.contact-email,
.contact-phone {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #ff6b35;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ff6b35;
    font-size: 16px;
}

.social-icon:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #102c54;
    background: #102c54;
}

.footer-copyright p {
    margin: 0;
    color: #b8c5d1;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}

/* Go to Top Button */
.go-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #134356;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(19, 67, 86, 0.25);
}

.go-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top-btn:hover {
    background: #0f3a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 67, 86, 0.35);
}

.go-to-top-btn:active {
    transform: translateY(-1px);
}

/* Mobile responsive for go to top button */
@media (max-width: 768px) {
    .go-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navigation{
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-text {
        padding-left: 0;
    }

    .stats-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .process-btn {
        width: 200px;
        justify-content: center;
    }

    .partners-slider {
        gap: 30px;
    }

    .partner-logo {
        min-width: 120px;
        height: 70px;
    }

    .partners-title {
        font-size: 32px;
    }

    .product-card {
        min-width: 280px;
        /* padding: 30px 20px; */
    }

    .product-title {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }

    .calculator-content {
        max-width: 90%;
    }

    .calculator-text {
        text-align: left;
        margin-bottom: 40px;
    }

    .calculator-form {
        padding: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .profile-image {
        width: 50px;
        height: 50px;
    }

    .profile-placeholder {
        font-size: 20px;
    }

    .get-started-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .get-started-text {
        padding-right: 0;
        text-align: left;
    }

    .contact-form {
        padding: 0;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }

    .header-content{
        flex-direction: column;
        gap: 20px;
    }

    .hero{
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero{
        padding-top: 30px;
    }

    .header-content{
        flex-direction: column;
        gap: 20px;
    }

    .navigation{
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 10px;
    }

    .process-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .partners-slider {
        gap: 20px;
    }

    .partner-logo {
        min-width: 100px;
        height: 60px;
    }

    .logo-placeholder {
        font-size: 10px;
    }

    .slider-controls {
        margin-top: 20px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .product-card {
        min-width: 250px;
        padding: 25px 16px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .product-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .icon-placeholder {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .profile-image {
        width: 45px;
        height: 45px;
    }

    .profile-placeholder {
        font-size: 18px;
    }

    .star {
        font-size: 14px;
    }

    .get-started-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .get-started-text {
        padding-right: 0;
        text-align: left;
    }

    .contact-form {
        padding: 0;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .send-message-btn {
        height: auto;
        padding: 16px 25px;
        font-size: 14px;
    }

    .calculator-content {
        max-width: 95%;
    }

    .calculator-form {
        padding: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .calculate-btn {
        height: auto;
        padding: 16px 25px;
    }

    .form-input,
    .form-select {
        padding: 16px 20px;
        font-size: 16px;
    }

    .calculate-btn {
        padding: 18px 25px;
        font-size: 14px;
    }

    .btn-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
}