* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); */
    color: white;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Main Content */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.content-overlay {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    text-align: left;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.hero-form-right {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.aws-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #122c4f;
    padding: 8px 12px;
    border-radius: 18px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #1b3c66;
    margin-left: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #3067a8;
    border-radius: 50%;
}

.main-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    z-index: 11;
    text-align: left;
}

.headline-blue {
    color: #2bb9fd;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kloudrac-image-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 11;
    margin-left: 0;
}

.kloudrac-center-image {
   
    /* width: 60%; */
    max-width: 400px;
    height: 150px;
    object-fit: contain;
    display: block;

}

.description {
    font-size: 20px;
    line-height: 1.6;
    color: #93afd2;
    max-width: 500px;
    margin: 30px 0 30px 0;
    font-weight: 600;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0079df 0%, #0087cc 100%);
    color: white;
    border: none;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: none;
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
    position: relative;
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: #122c4f;
    border: 1px solid #122c4f;
    color: white;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    flex-shrink: 0;
    display: inline-block;
}

.info-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    margin-left: 550px;
}

@media (max-width: 1024px) {
    .info-icon-container {
        margin-left: auto;
        margin-right: auto;
    }
}

.info-icon-circle {
    width: 26px;
    height: 40px;
    border: 2px solid #4173af;
    border-radius: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    background: transparent;
}

.info-icon-circle:hover {
    opacity: 0.8;
}

.info-icon-line {
    width: 4px;
    height: 8px;
    background: #60a5fa;
    border-radius: 2px;
    animation: moveUpDown 2s ease-in-out infinite;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Why Kloudrac Section */
.why-section {
    
     background-color: #0a1628;
    padding: 80px 80px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.why-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.why-title-blue {
    color: #2bb9fd;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.card {
    background: #102946;
    border-radius: 12px;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3b82f6;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.card-heading {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 36px;
    margin-top: 36px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #93afd2;
    font-weight: 400;
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .why-section {
        padding: 60px 30px;
    }

    .why-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 30px;
    }
}

/* AWS Cloud Services Section */
.services-section {
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); */
    background: #0d1e35;
    padding: 80px 60px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.services-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.services-title-blue {
    color: #2bb9fd;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    color: #93afd2;
    margin-bottom: 60px;
    font-weight: 400;
}

.services-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.services-grid-top {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
}

.services-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #0a1629;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3b82f6;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-heading {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

.service-text {
    font-size: 14px;
    line-height: 1.6;
    color: #93afd2;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 1024px) {
    .services-grid-top,
    .services-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 30px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .services-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-grid-top,
    .services-grid-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 30px;
    }
}

/* Built on Technology Section */
.technology-section {
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); */
    background-color: #0a1628;
    padding: 80px 60px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.technology-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.technology-title-blue {
    color: #2bb9fd;
}

.technology-subtitle {
    text-align: center;
    font-size: 18px;
    color: #93afd2;
    margin-bottom: 60px;
    font-weight: 400;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.technology-card {
    background: rgba(18, 44, 79, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    position: relative;
    min-height: 300px;
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3b82f6;
}

.technology-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.technology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.technology-card:hover .technology-image img {
    transform: scale(1.1);
}

.technology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    border-radius: 12px;
}

.technology-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.technology-card-heading {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.technology-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .technology-section {
        padding: 60px 30px;
    }

    .technology-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .technology-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .technology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Trusted Partner Section */
.partner-section {
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); */
    background-color: #0c1d34;
    padding: 80px 60px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.partner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.partner-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.partner-image {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.partner-overlay-box {
    position: absolute;
    bottom: -20px;
    right: -35px;
    background: linear-gradient(135deg, #007add 0%, #0089c9 100%);
    border-radius: 12px;
    padding: 25px 20px;
    color: white;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 160px;
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s ease;
}

@media (max-width: 1024px) {
    .partner-overlay-box {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .partner-overlay-box {
        right: 0;
        bottom: 0;
        position: relative;
        margin-top: 20px;
        max-width: 100%;
    }
}

.partner-overlay-box.animate {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0, 122, 221, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}
    

.overlay-number {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

.overlay-aws {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    text-align: center;
    color: white;
}

.overlay-text {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.partner-content {
    color: white;
}

.partner-headline {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partner-headline-blue {
    color: #2bb9fd;
    display: block;
}

.partner-description {
    font-size: 17px;
    line-height: 1.6;
    color: #93afd2;
    margin-bottom: 40px;
    font-weight: 400;
}

.partner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-check {
    width: 18px;
    height: 18px;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    display: block;
}

.feature-text {
    font-size: 14px;
    line-height: 1.5;
    color: #93afd2;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .partner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 60px 30px;
    }

    .partner-headline {
        font-size: 36px;
    }

    .partner-description {
        font-size: 16px;
    }

    .partner-features {
        grid-template-columns: 1fr;
    }

    .partner-image {
        height: 300px;
    }

    .overlay-number {
        font-size: 36px;
    }

    .overlay-text {
        font-size: 14px;
    }
}

/* What Makes Us Different Section */
.different-section {
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); */
    background-color: #0a1628;
    padding: 80px 60px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.different-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.different-title-blue {
    /* background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%); */
    background-color: #2bb9fd;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.different-card {
    background: #14304f;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    text-align: left;
}

.different-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3b82f6;
}

.different-icon {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.different-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.different-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.different-heading {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

.different-text {
    font-size: 14px;
    line-height: 1.6;
    color: #93afd2;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .different-section {
        padding: 60px 30px;
    }

    .different-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .different-card {
        padding: 30px;
    }
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%); */
    background: #163a5a;
    padding: 100px 60px;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.cta-content-left {
    display: flex;
    flex-direction: column;
}

.cta-form-right {
    position: relative;
}

.cta-logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-logo {
    max-width: 199px;
    height: auto;
    display: block;
}

.cta-heading {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
    text-align: center;
}

.cta-heading-blue {
    color: #2bb9fd;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-align: center;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.cta-btn-secondary {
    background: white;
    color: #6b7280;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
    position: relative;
}

.cta-btn-secondary:hover {
    transform: scale(1.05);
    background: #122c4f;
    border: 1px solid #122c4f;
    color: white;
}

.cta-arrow {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 30px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Form Styles - Exact from Konnect */
.r-08 {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

.block--shadow {
	-webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
	-moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
}

#hero-24-form {
	padding: 40px 30px;
    background-color: #000;
}

.request-form .form-control {
	height: 51px;
    background-color: black;
    border: 1px solid #80a2a7;
    /* border-radius: 1px solid #80a2a7; */
    border-radius: 10px;
    color: darkgrey;
    font-size: medium;
    font-weight: 400;
    margin-bottom: 11px;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    -webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.hero-form-wrapper .form-control::-moz-placeholder {
	color: whitesmoke;
}

.hero-form-wrapper .form-control:-ms-input-placeholder {
	color: whitesmoke;
}

.hero-form-wrapper .form-control::-webkit-input-placeholder {
	color: whitesmoke;
}

.request-form .form-control:focus {
	background-color: black;
    border-color: white !important;
	outline: 0;
	box-shadow: none;
	color: white;
}

.request-form textarea.form-control {
	height: auto;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    font-size: medium !important;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: normal;
    resize: vertical;
    background-color: black;
    border: 1px solid #80a2a7;
    color: darkgrey;
    margin-bottom: 11px;
    -webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.request-form select.form-control {
	color: darkgrey !important;
	background-color: black !important;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.request-form select.form-control option {
	background: black;
	color: darkgrey;
    font-size: medium;
    font-weight: 400;
}

.request-form select.form-control:focus {
	color: white !important;
}

.form-btn {
	margin-top: 15px;
}

.btn--theme {
	color: var(--white) !important;
	border-color: var(--theme-color) !important;
	background-color: var(--theme-color) !important;
}

.hover--theme:hover {
	color: var(--white) !important;
	border-color: var(--theme-btn-hover) !important;
	background-color: var(--theme-btn-hover) !important;
}

.r-06 {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
}

.btn {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

#g-recaptcha-error {
	display: none;
	color: orangered;
	font-size: 14px;
	float: right;
}

#phone-number-error {
	color: orangered;
	font-size: 14px;
	float: right;
}

.iti {
	display: block !important;
}

.iti__country-list {
	width: 301px !important;
	font-size: 12px !important;
}

.iti__country-name {
	color: black !important;
}

.h5-lg {
	font-size: 18px !important;
    max-width: 150px;
    /* font-size: 18px; */
    text-align: center;
    max-width: 200px;
}

:root {
	--white: #fff;
	--theme-color: #00A1E0;
	--theme-btn-hover: #019cec;
	--tra-black: rgba(0, 0, 0, .08);
}

.request-form .row {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.request-form .col-md-12 {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    border-radius: 1px solid #80a2a7;
}

@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet Screens (1024px and below) */
@media screen and (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        padding: 40px 30px;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .content-overlay {
        margin-top: 40px;
        padding-left: 0;
    }
    
    .main-headline {
        font-size: 38px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .kloudrac-image-container {
        justify-content: center;
    }
    
    .kloudrac-center-image {
        max-width: 350px;
        height: auto;
    }
    
    .description {
        font-size: 18px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .info-icon-container {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        margin-top: 60px;
    }
    
    /* Why Section */
    .why-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .why-title {
        font-size: 36px;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 100%;
        padding: 0;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Technology Section */
    .technology-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .technology-title {
        font-size: 36px;
    }
    
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Partner Section */
    .partner-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .partner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-headline {
        font-size: 36px;
        text-align: center;
    }
    
    .partner-description {
        text-align: center;
    }
    
    .partner-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-image {
        height: 400px;
    }
    
    .partner-overlay-box {
        right: -20px;
        bottom: -20px;
    }
    
    /* Different Section */
    .different-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .different-title {
        font-size: 36px;
    }
    
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 30px;
        width: 100%;
        max-width: 100vw;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-heading {
        font-size: 42px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

/* Mobile Screens (768px and below) */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 30px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-bg-image {
        object-position: 70% center;
    }
    
    .content-overlay {
        margin-top: 30px;
    }
    
    .aws-badge {
        align-self: center;
        margin-bottom: 20px;
    }
    
    .main-headline {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .kloudrac-center-image {
        max-width: 280px;
        height: auto;
    }
    
    .description {
        font-size: 16px;
        margin: 20px 0;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .info-icon-container {
        margin-top: 60px;
        margin-left: auto;
    }
    
    /* Why Section */
    .why-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .why-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    /* Services Section */
    .services-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .services-grid-top,
    .services-grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    
    .service-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Technology Section */
    .technology-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .technology-title {
        font-size: 28px;
    }
    
    .technology-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    
    .technology-card {
        min-height: 280px;
    }
    
    .technology-content {
        padding: 20px;
    }
    
    /* Partner Section */
    .partner-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .partner-headline {
        font-size: 28px;
        text-align: left;
    }
    
    .partner-description {
        font-size: 16px;
        text-align: left;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .partner-image {
        height: 300px;
    }
    
    .partner-overlay-box {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        margin-top: 20px;
        padding: 20px;
        transform: none !important;
    }
    
    .partner-image-wrapper {
        overflow: hidden;
    }
    
    .partner-overlay-box.animate {
        transform: none;
    }
    
    /* Different Section */
    .different-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .different-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    
    .different-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .different-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Form Adjustments */
    #hero-24-form {
        padding: 30px 20px;
    }
    
    .h5-lg {
        max-width: 100%;
        font-size: 16px !important;
        text-align: center;
    }
}

/* Small Mobile Screens (480px and below) */
@media screen and (max-width: 480px) {
    /* Hero Section */
    .main-headline {
        font-size: 24px;
    }
    
    .kloudrac-center-image {
        max-width: 220px;
    }
    
    .description {
        font-size: 15px;
    }
    
    /* Section Titles */
    .why-title,
    .services-title,
    .technology-title,
    .different-title,
    .partner-headline {
        font-size: 24px;
    }
    
    .services-subtitle,
    .technology-subtitle,
    .partner-description {
        font-size: 15px;
    }
    
    /* CTA Section */
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    /* Form */
    .request-form .form-control,
    .request-form textarea.form-control,
    .request-form select.form-control {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Fix for Landscape Mode on Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .main-headline {
        font-size: 24px;
    }
    
    .description {
        font-size: 14px;
        margin: 15px 0;
    }
    
    .kloudrac-center-image {
        max-width: 200px;
    }
}

/* Fix for Form Elements on Mobile */
@media screen and (max-width: 768px) {
    .request-form .row {
        flex-direction: column;
    }
    
    .request-form .col-md-12 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .iti__country-list {
        width: 280px !important;
        font-size: 11px !important;
    }
}
