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

:root {
    --primary-blue: #03045E;
    --primary-yellow: #F8BF01;
    --text-dark: #454545;
    --text-gray: #4F4F4F;
    --text-black: #000000;
    --background-light: #fbf6f6;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--primary-yellow);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hero Section */
.india-hero {
    position: relative;
    height: 100vh;
    min-height: min(800px, 100vh);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-logo img {
    height: 39px;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    opacity: 0.8;
}

.btn-contact {
    background-color: var(--primary-yellow);
    color: var(--primary-blue) !important;
    padding: 8px 20px;
    border-radius: 11px;
}

.btn-contact:hover {
    background-color: #f0b601;
    opacity: 1 !important;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 40px 0;
    background-color: var(--primary-yellow);
}

.breadcrumb {
    background-color: var(--white);
    color: var(--primary-blue);
    display: inline-block;
    padding: 13px 28px;
    border-radius: 23px;
    font-size: 20px;
    font-weight: 700;
    margin-left: 236px;
}

/* India Section */
.india-section {
    padding: 70px 0;
    background-color: var(--primary-yellow);
}

.india-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.india-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 330%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.india-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.india-text {
    flex: 1;
    max-width: 700px;
}

.section-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.india-highlight {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 25px;
}

.india-description {
    font-size: 18px;
    line-height: 2.5;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: justify;
}

.btn-partner {
    display: inline;
    color: var(--text-black);
    font-size: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
    margin-left: 8px;
}

.btn-partner:hover {
    text-decoration: underline;
}

.india-image {
    flex: 0 0 420px;
}

.india-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* mix-blend-mode: multiply; */
}

/* Portfolio Section */
.portfolio-section {
    padding: 70px 0;
    background-color: var(--primary-yellow);
}

.portfolio-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    max-width: 1400px;
}

.portfolio-actions {
    margin-bottom: 80px;
}

.btn-view-products {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 13px 28px;
    border: none;
    border-radius: 23px;
    font-size: 20px;
    font-weight: 700;
    cursor: not-allowed;
    transition: background-color 0.3s;
    opacity: 0.8;
}

.btn-view-products:disabled {
    cursor: not-allowed;
}

.coming-soon-container {
    background-color: var(--white);
    padding: 30px 0;
    border-radius: 25px;
    text-align: center;
    margin-top: 40px;
}

.coming-soon-text {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Partner Section */
.partner-section {
    padding: 80px 0 120px;
    background-color: var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--background-light);
    padding: 80px 0;
    border-radius: 10px 10px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 60px;
    align-items: start;
    position: relative;
}

/* Left Section: Pages */
.footer-pages {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Center Section: Logo and Social Icons */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 318px;
    height: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-icon {
    width: 32px;
    height: 32px;
}

/* Right Section: Address and Contact */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-address .footer-title {
    text-align: left;
    margin-bottom: 20px;
}

.footer-contact .footer-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-item,
.address-item {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item span,
.contact-emails span,
.address-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-icon,
.address-icon {
    width: 15px;
    height: 15px;
    margin-top: 6px;
    flex-shrink: 0;
}

.address-item p {
    max-width: 275px;
    line-height: 1.4;
}

/* Footer Bottom: Copyright and Legal */
.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.footer-legal .separator {
    color: var(--text-dark);
    opacity: 0.5;
}

/* Page Navigation Sidebar */
.page-nav-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-nav-btn {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    padding: 12px 24px;
    border-radius: 11px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-nav-btn:hover {
    background-color: #02034a;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-yellow);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

.page-transition-overlay.active {
    transform: translateY(0);
}

.page-transition-overlay.slide-out {
    transform: translateY(-100%);
}

.transition-logo {
    width: 300px;
    height: auto;
    opacity: 0;
    transition: opacity 300ms ease;
}

.page-transition-overlay.active .transition-logo {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .navbar {
        padding: 32px 40px;
    }

    .container {
        padding: 0 60px;
    }

    .breadcrumb {
        margin-left: 60px;
    }

    .footer-container {
        padding: 0 60px;
    }

}

@media (max-width: 1200px) {
    .navbar {
        padding: 28px 30px;
    }

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

@media (max-width: 1024px) {
    .page-nav-sidebar {
        display: none;
    }

    .navbar {
        padding: 24px 20px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .container {
        padding: 0 40px;
    }

    .breadcrumb {
        margin-left: 40px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

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

    .india-highlight {
        font-size: 36px;
    }

    .india-content {
        flex-direction: column;
        gap: 40px;
    }

    .india-text {
        max-width: 100%;
    }

    .india-description,
    .portfolio-description {
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .india-image {
        flex: 1;
        max-width: 100%;
    }

    .india-section {
        padding: 60px 0;
    }

    .portfolio-section {
        padding: 60px 0;
    }

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

    .footer-center {
        padding-top: 0;
        gap: 30px;
    }

    .footer-logo img {
        width: 240px;
    }

    .footer-right {
        gap: 40px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .india-hero {
        min-height: 100svh;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .india-highlight {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .india-section {
        padding: 45px 0;
    }

    .india-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .portfolio-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .coming-soon-text {
        font-size: 28px;
    }

    .breadcrumb {
        margin-left: 20px;
        font-size: 18px;
    }

    .portfolio-section,
    .partner-section {
        padding: 45px 0;
    }

    .footer {
        padding: 50px 0;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        margin-left: 20px;
        font-size: 16px;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .india-highlight {
        font-size: 24px;
    }

    .india-section {
        padding: 40px 0;
    }

    .india-description {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-description {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .coming-soon-text {
        font-size: 24px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-copyright p,
    .footer-legal a {
        font-size: 13px;
    }

    .footer-legal {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Form Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 94, 0.85);
    backdrop-filter: blur(8px);
}

.contact-modal-dialog {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.contact-modal.active .contact-modal-dialog {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
}

.contact-modal-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.contact-modal-content {
    padding: 50px 60px;
}

.contact-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-modal-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #D32F2F;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border: 2px solid #fbf6f6;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 4, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.btn-submit {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 14px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 16px;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #f0b601;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: #F0F7F0;
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.contact-success-message.active {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.contact-success-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.contact-success-message p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Modal Responsive Styles */
@media (max-width: 1024px) {
    .contact-modal-content {
        padding: 40px 45px;
    }

    .contact-modal-title {
        font-size: 32px;
    }

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

@media (max-width: 768px) {
    .contact-modal-content {
        padding: 35px 30px;
    }

    .contact-modal-title {
        font-size: 28px;
    }

    .contact-modal-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-modal-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .btn-submit {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .contact-modal-dialog {
        width: 95%;
        max-height: 95vh;
    }

    .contact-modal-content {
        padding: 30px 20px;
    }

    .contact-modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-modal-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-modal-close {
        top: 12px;
        right: 12px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px 14px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px 30px;
    }

    .contact-success-message {
        padding: 30px 20px;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 30px;
        margin-bottom: 16px;
    }

    .contact-success-message h3 {
        font-size: 24px;
    }

    .contact-success-message p {
        font-size: 15px;
    }
}

