* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


/* Nav Section Starts */

    /* Nav Menu */
    header {
        position: flex;
        top: 0;
        z-index: 1000;
        width: 100%;
        background-color: white;
        transition: box-shadow 0.3s ease;
    }
    
    header.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }
    
    .logoo img {
        height: 60px;
        animation: logoFadeIn 1s ease-out forwards;
    }
    
    /* Logo animation */
    @keyframes logoFadeIn {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .logoo img:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
    
    /* Desktop navigation */
    .desktop-nav {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.2s ease;
    }
    
    /* Underline animation for nav items */
    .nav-button::after,
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #821928;
        transition: width 0.3s ease;
    }
    
    .nav-button:hover::after,
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-button:hover {
        color: #111827;
    }
    
    .nav-link {
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s ease;
        text-decoration: none;
    }
    
    .nav-link:hover {
        color: #111827;
    }
    
    .chevron-icon {
        margin-left: 0.5rem;
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }
    
    .rotate {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0.75rem;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        animation: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* Dropdown slide-in animation */
    @keyframes dropdownSlide {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        80% {
            opacity: 1;
            transform: translateY(-2px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        color: #1f2937;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .dropdown-item:hover {
        background-color: #214150;
        color: white;
        border-radius: 4px;
        transform: translateX(5px);
    }
    
    /* Sub-dropdown styles */
    .sub-dropdown {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .sub-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* CTA buttons */
    .ncta-buttons {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .ncta-buttons {
            display: flex;
            gap: 1.25rem;
        }
    }
    
    .nbtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nbtn-outline {
        border: 1px solid #821928;
        color: #821928;
        background-color: white;
    }
    
    .nbtn-outline:hover {
        background-color: #821928;
        color: white;
        transform: scale(1.05);
    }
    
    .nbtn-primary {
        border: 1px solid transparent;
        color: white;
        background-color: #821928;
    }
    
    .nbtn-primary:hover {
        background-color: #214150;
        transform: scale(1.05);
    }
    
    /* Mobile menu button */
    .mobile-menu-button {
        all: unset; /* Removes default button styles */
        display: flex;
        padding: 0.75rem;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    @media (min-width: 1024px) {
        .mobile-menu-button {
            display: none;
        }
    }
    
    .mobile-menu-button:hover {
        color: #111827;
        background-color: #f3f4f6;
        transform: scale(1.1);
    }
    
    .mobile-menu-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile menu */
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        background-color: white;
        transition: max-height 0.5s ease-in-out;
    }
    
    .mobile-menu.active {
        max-height: 100vh;
        padding-bottom: 1rem;
        animation: mobileMenuSlide 0.5s ease-out forwards;
    }
    
    /* Mobile menu slide animation */
    @keyframes mobileMenuSlide {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav-item {
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-menu.active .mobile-nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
    
    .mobile-nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-button:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .mobile-nav-link:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-dropdown-item {
        text-decoration: none;
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #4b5563;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .mobile-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-sub-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-sub-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-cta {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0.4s;
        text-decoration: none;
    }
    
    .mobile-menu.active .mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-cta .nbtn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .dropdown, .sub-dropdown {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            margin-top: 0;
            transform: none;
            opacity: 1;
            visibility: visible;
            display: none;
        }
        
        .dropdown.active, .sub-dropdown.active {
            display: block;
        }
        
        .sub-dropdown {
            padding-left: 1.5rem;
        }
    }
    
    @media (max-width: 640px) {
        .header-inner {
            height: 64px;
        }
        
        .logoo img {
            height: 48px;
        }
        
        .header-container {
            padding: 0 1rem;
        }
    }
        
  
    /*Nav Section Ends */


/* Hero Section Starts */

.hero {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    color: #333;
}

/* Left content */
.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #214150;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bbtn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bbtn-primary {
    background-color: #821928;
    color: white;
    border: none;
}

.bbtn-primary:hover {
    background-color: #214150;
    transform: translateY(-2px);
}

.bbtn-secondary {
    background-color: transparent;
    color: #214150;
    border: 2px solid #821928;
}

.bbtn-secondary:hover {
    background-color: rgba(255, 87, 34, 0.1);
    transform: translateY(-2px);
}

.hero-note {
    font-size: 0.9rem;
    color: #777;
}

/* Right content - single image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

.image-container img {
    width: 100%;
    height: auto;
    
}

/* Background animations */
.bg-animation {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 87, 34, 0.2);
    top: -100px;
    right: 10%;
    animation: pulse 15s infinite alternate;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(103, 58, 183, 0.15);
    bottom: -50px;
    left: 5%;
    animation: pulse 10s infinite alternate-reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: rgba(33, 150, 243, 0.15);
    top: 30%;
    left: 30%;
    animation: pulse 12s infinite alternate 2s;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .image-container {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 3rem 5%;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        padding-left: 0;
        width: 100%;
    }
    
    .image-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1.5rem;
    }
    
    .image-container {
        max-width: 320px;
    }
}

/* Hero Section Ends */

/* advantages Section Starts */

        .advantages-container {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }

        .advantages-container h2 {
            text-align: center;
            margin: 40px 0;
            font-size: 28px;
            color: #000;
        }

        /* Main advantages section */
        .advantages {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
        }

        .advantage-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 20px 15px;
        }

        .advantage-icon {
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-icon img {
            max-height: 100%;
            max-width: 100%;
        }

        .advantage-title {
            color: #821928;
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .advantage-description {
            font-size: 14px;
            color: #333;
        }

        /* Features section */
        .features-title {
            text-align: center;
            margin: 40px 0;
            font-size: 28px;
            color: #000;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .feature-card {
            flex: 0 0 calc(16.666% - 20px);
            min-width: 150px;
            text-align: center;
            margin-bottom: 30px;
        }

        .feature-icon {
            height: 60px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon img {
            max-height: 100%;
            max-width: 100%;
        }

        .feature-title {
            font-size: 14px;
            color: #333;
            font-weight: bold;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .advantage-card {
                flex: 0 0 calc(50% - 30px);
            }
            
            .feature-card {
                flex: 0 0 calc(33.333% - 20px);
            }
        }

        @media (max-width: 768px) {
            .advantages-container h2, .features-title {
                font-size: 24px;
            }
            
            .advantage-card {
                flex: 0 0 calc(50% - 20px);
                min-width: 200px;
            }
            
            .feature-card {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 576px) {
            .advantage-card {
                flex: 0 0 100%;
            }
            
            .feature-card {
                flex: 0 0 calc(50% - 15px);
                min-width: 120px;
            }
            
            .advantage-title {
                font-size: 18px;
            }
            
            .advantage-description {
                font-size: 13px;
            }
        }

/* advantages Section Ends */

/* Product Section  Starts */

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* News grid layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News card styles */
.news-card {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.news-date {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-right: 16px;
}

.news-category {
    font-size: 14px;
    font-weight: 500;
    color: #8a70d6;
    text-transform: uppercase;
}

.news-meta {
    margin-left: auto;
    background-color: #214150;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.news-meta-arrow {
    margin-left: 6px;
}

.news-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

/* Responsive styles */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 220px;
    }
    
    .news-title {
        font-size: 22px;
    }
}

/* Product Section  Ends */


/* GEALAN PRIMA Setions Starts */

.prima-section {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 30px 0 15px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #555;
}

.info-text {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #666;
}

.option-list {
    list-style: none;
    margin-bottom: 20px;
}

.option-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.option-list li:last-child {
    border-bottom: none;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.image-item {
    flex: 1 1 200px;
    max-width: 250px;
    margin-bottom: 20px;
}

.image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.image-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.color-option {
    flex: 1 1 120px;
    max-width: 150px;
}

.color-swatch {
    height: 80px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
}

.color-name {
    text-align: center;
    font-size: 0.9rem;
}

.mahogany {
    background-color: #5D2A1E;
}

.golden-oak {
    background-color: #B27C39;
}

.oak {
    background-color: #C68E55;
}

.anthracite {
    background-color: #383E42;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-gallery {
        justify-content: center;
    }
    
    .image-item {
        flex: 1 1 150px;
    }
    
    .color-option {
        flex: 1 1 100px;
    }
}

@media (max-width: 480px) {
    .image-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .color-option {
        flex: 1 1 80px;
    }
}

/* GEALAN PRIMA Setions Ends */

/* GEALAN-SUPRA Section Starts */

.gealan-section {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    background-color: transparent;
    color: #333;
    line-height: 1.6;
}

.ssection-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

.gealan-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sliding-list {
    flex: 1;
}

.sliding-item {
    padding: 15px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sliding-item:hover {
    background-color: #e5e5e5;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Media query for tablets and larger screens */
@media (min-width: 768px) {
    .gealan-container {
        flex-direction: row;
    }

    .sliding-list {
        flex: 1;
        margin-right: 20px;
    }

    .image-container {
        flex: 1;
    }
}

/* GEALAN-SUPRA Section Ends */

/* GEALAN-SELECTA Section Starts */

.gealan-section {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.gealan-heading {
    font-size: 24px;
    margin-bottom: 20px;
}
.gealan-list {
    list-style: none;
    padding: 0;
}
.gealan-list li {
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.gealan-images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.gealan-image {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}
.gealan-image img {
    max-width: 100%;
    height: auto;
}
.gealan-image p {
    font-size: 14px;
    margin: 5px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gealan-images {
        flex-direction: column;
        align-items: center;
    }
    .gealan-image {
        margin: 10px 0;
    }
    .gealan-heading {
        font-size: 20px;
    }
    .gealan-list li {
        font-size: 14px;
    }
}

/* GEALAN-SELECTA Section Ends */

/* Download Section Stasrts */

.download-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #000;
    line-height: 1.5;
    max-width: 70%;
    margin: 0 auto;
    padding: 5% 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}



/* Left content area */
.careers-content {
    max-width: 600px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

/* CAREERS label */
.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Main heading */
.careers-heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 50px;
}

/* CTA button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #000;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #fff;
}

.cta-button:hover:before {
    left: 0;
}

/* Right image container */
.immage-container {
    width: 40%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.immage-container img {
    width: 100%;
    height: auto;
    
}

/* Responsive styles */
@media (max-width: 992px) {
    .careers-heading {
        font-size: 40px;
    }
    
    .immage-container {
        width: 35%;
    }
}

@media (max-width: 768px) {
    .download-section {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .careers-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .careers-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .immage-container {
        width: 70%;
        max-width: 300px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .section-label {
        margin-bottom: 25px;
    }
    
    .careers-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .immage-container {
        width: 80%;
    }
}

/* Download Section Ends */

/* Footer Section Starts */

.footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #821928;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer-column ul li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #214150;
  }
  
  /* Dropdown Styles */
  .ddropdown {
    position: relative;
  }
  
  .ddropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .ddropdown-toggle .fa {
    font-size: 10px;
    color: #555;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-toggle {
    color: #214150;
  }
  
  .ddropdown:hover .ddropdown-toggle .fa {
    transform: rotate(180deg);
    color: #214150;
  }
  
  .ddropdown-menu {
    display: none;
    position: relative;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    border-radius: 6px;
    z-index: 10;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ddropdown-menu li {
    margin-bottom: 0;
    padding: 0;
  }
  
  .ddropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .ddropdown-menu li a:hover {
    background-color: #f5f9ff;
    color: #214150;
  }
  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f5f9ff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 24px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .newsletter-button:hover {
    background-color: #333;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .contact-column p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-right: 50px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  
  .copyright {
    color: #555;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    color: #111;
    font-size: 18px;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  @media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  
    .ddropdown-menu {
        position: static;
        background-color: #fafafa;
        min-width: 100%;
        border-radius: 4px;
        margin-top: 0;
        padding: 8px 0;
        opacity: 1;
        transform: none;
    }
  
    .ddropdown:hover .ddropdown-menu {
        display: block;
    }
  }
  
  /* Footer Section End's */