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

:root {
    --adani-primary: #1e3a8a;
    --adani-primary-dark: #1e40af;
    --adani-primary-light: #3b82f6;
    --adani-secondary: #7c3aed;
    --adani-accent: #06b6d4;
    --adani-gold: #f59e0b;
    --adani-text-dark: #1f2937;
    --adani-text-light: #6b7280;
    --adani-bg-light: #f8fafc;
    --adani-bg-white: #ffffff;
    --adani-border: #e5e7eb;
    --adani-gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #7c3aed 100%);
    --adani-gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --adani-gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #7c3aed 70%, #06b6d4 100%);
    --adani-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --adani-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --adani-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--adani-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.adani-wrapper {
    width: 100%;
    min-height: 100vh;
}

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

.adani-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--adani-shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.adani-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adani-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--adani-primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
    background: var(--adani-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adani-logo-text-footer {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adani-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.adani-nav-link {
    text-decoration: none;
    color: var(--adani-text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.adani-nav-link:hover {
    color: var(--adani-primary);
}

.adani-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--adani-gradient-primary);
    transition: width 0.3s ease;
}

.adani-nav-link:hover::after,
.adani-nav-active::after {
    width: 100%;
}

.adani-nav-active {
    color: var(--adani-primary);
}

.adani-header-cta {
    padding: 12px 28px;
    font-size: 14px;
}

.adani-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.adani-menu-line {
    width: 24px;
    height: 2px;
    background: var(--adani-text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.adani-mobile-menu-toggle.active .adani-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.adani-mobile-menu-toggle.active .adani-menu-line:nth-child(2) {
    opacity: 0;
}

.adani-mobile-menu-toggle.active .adani-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.adani-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.adani-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.adani-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.adani-mobile-menu.active .adani-mobile-nav {
    right: 0;
}

.adani-mobile-nav-link {
    text-decoration: none;
    color: var(--adani-text-dark);
    font-weight: 500;
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
}

.adani-mobile-nav-link:hover,
.adani-mobile-nav-link.adani-nav-active {
    background: var(--adani-gradient-primary);
    color: white;
    transform: translateX(5px);
}

.adani-mobile-cta {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.adani-cta-button {
    background: var(--adani-gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adani-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--adani-shadow-md);
}

.adani-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.adani-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--adani-gradient-hero);
    opacity: 0.95;
    z-index: -1;
}

.adani-hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.adani-hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.adani-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.adani-hero-text {
    z-index: 1;
}

.adani-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.adani-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.adani-hero-buttons {
    display: flex;
    gap: 20px;
}

.adani-button {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.adani-button-primary {
    background: white;
    color: var(--adani-primary);
    box-shadow: var(--adani-shadow-md);
}

.adani-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--adani-shadow-lg);
}

.adani-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.adani-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.adani-button-large {
    padding: 18px 40px;
    font-size: 18px;
}

.adani-hero-visual {
    position: relative;
    z-index: 1;
}

.adani-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.adani-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.adani-hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.adani-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.adani-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.adani-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.adani-services {
    padding: 120px 0;
    background: var(--adani-bg-light);
    position: relative;
}

.adani-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--adani-bg-light));
}

.adani-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.adani-section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--adani-text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.adani-section-description {
    font-size: 18px;
    color: var(--adani-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.adani-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.adani-service-card {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.adani-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--adani-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.adani-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--adani-shadow-lg);
}

.adani-service-card:hover::before {
    transform: scaleX(1);
}

.adani-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--adani-primary);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 16px;
}

.adani-service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--adani-text-dark);
    margin-bottom: 16px;
}

.adani-service-text {
    font-size: 16px;
    color: var(--adani-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.adani-service-link {
    color: var(--adani-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.adani-service-link:hover {
    gap: 12px;
}

.adani-advantages {
    padding: 120px 0;
    background: white;
}

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

.adani-advantages-text {
    padding-right: 40px;
}

.adani-advantages-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.adani-advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.adani-advantage-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--adani-primary);
}

.adani-advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--adani-text-dark);
    margin-bottom: 8px;
}

.adani-advantage-text {
    font-size: 16px;
    color: var(--adani-text-light);
    line-height: 1.7;
}

.adani-advantages-visual {
    position: relative;
}

.adani-advantages-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-lg);
}

.adani-quick-apply {
    padding: 120px 0;
    background: var(--adani-gradient-primary);
    position: relative;
    overflow: hidden;
}

.adani-quick-apply::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.adani-quick-apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.adani-quick-apply-text .adani-section-title,
.adani-quick-apply-text .adani-section-description {
    color: white;
}

.adani-quick-apply-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adani-form-group {
    width: 100%;
}

.adani-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.adani-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.adani-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.adani-quick-apply-visual {
    position: relative;
}

.adani-quick-apply-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-lg);
}

.adani-testimonials {
    padding: 120px 0;
    background: var(--adani-bg-light);
}

.adani-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.adani-testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-sm);
    transition: all 0.4s ease;
}

.adani-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--adani-shadow-lg);
}

.adani-testimonial-rating {
    color: var(--adani-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.adani-testimonial-text {
    font-size: 16px;
    color: var(--adani-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.adani-testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.adani-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--adani-primary);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    flex-shrink: 0;
}

.adani-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--adani-text-dark);
    margin-bottom: 4px;
}

.adani-testimonial-role {
    font-size: 14px;
    color: var(--adani-text-light);
}

.adani-footer {
    background: var(--adani-text-dark);
    color: white;
    padding: 80px 0 40px;
}

.adani-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.adani-footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adani-footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.adani-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.adani-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    margin-bottom: 12px;
    display: block;
}

.adani-footer-link:hover {
    color: white;
}

.adani-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.adani-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.adani-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid var(--adani-border);
}

.adani-cookie-banner.show {
    transform: translateY(0);
}

.adani-cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.adani-cookie-banner-text {
    flex: 1;
}

.adani-cookie-banner-message {
    font-size: 14px;
    color: var(--adani-text-dark);
    line-height: 1.6;
    margin: 0;
}

.adani-cookie-banner-link {
    color: var(--adani-primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.adani-cookie-banner-link:hover {
    color: var(--adani-primary-dark);
}

.adani-cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.adani-cookie-accept {
    padding: 12px 28px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .adani-hero {
        padding: 110px 0 70px;
    }

    .adani-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .adani-hero-text {
        text-align: center;
    }

    .adani-hero-image {
        transform: none;
    }

    .adani-hero-image:hover {
        transform: scale(1.02);
    }

    .adani-advantages-content,
    .adani-quick-apply-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .adani-services-grid,
    .adani-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .adani-hero-title {
        font-size: 48px;
    }

    .adani-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .adani-container {
        padding: 0 24px;
    }

    .adani-header-container {
        padding: 0 24px;
        position: relative;
    }

    .adani-logo-text {
        font-size: 20px;
    }

    .adani-nav {
        display: none;
    }

    .adani-header-cta {
        display: none;
    }

    .adani-mobile-menu-toggle {
        display: flex;
    }

    .adani-mobile-menu {
        display: block;
    }

    .adani-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .adani-hero-background::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }

    .adani-hero-background::after {
        width: 300px;
        height: 300px;
        bottom: -20%;
        left: -20%;
    }

    .adani-hero-content {
        padding: 0 24px;
        gap: 40px;
    }

    .adani-hero-text {
        text-align: center;
    }

    .adani-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .adani-hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .adani-hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .adani-hero-buttons .adani-button {
        width: 100%;
        padding: 16px 24px;
    }

    .adani-hero-visual {
        order: -1;
    }

    .adani-hero-image {
        transform: none;
        border-radius: 16px;
    }

    .adani-hero-image:hover {
        transform: scale(1.02);
    }

    .adani-hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .adani-stat-card {
        padding: 20px;
    }

    .adani-stat-number {
        font-size: 28px;
    }

    .adani-stat-label {
        font-size: 13px;
    }

    .adani-section-title {
        font-size: 32px;
    }

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

    .adani-cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
        gap: 16px;
    }

    .adani-cookie-banner-message {
        font-size: 13px;
    }

    .adani-cookie-banner-actions {
        width: 100%;
    }

    .adani-cookie-accept {
        width: 100%;
        padding: 14px 24px;
    }
}

