:root {
    --primary-red: #9A0101;
    --secondary-red: #9A0101;
    --navy-deep: #0a1323;
    --indigo-dark: #333365;
    /* --primary-green: #009900; */
    --primary-green: #0b570b;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    list-style: none;
}

ul li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.nav-menu li:before,
.dropdown-menu li:before,
.breadcrumb li:before,
.mobile-contact-item li:before,
ul.nav-menu li:before,
ul.dropdown-menu li:before,
ul.breadcrumb li:before {
    content: none;
}

.nav-menu li,
.dropdown-menu li,
.breadcrumb li,
.mobile-contact-item li,
ul.nav-menu li,
ul.dropdown-menu li,
ul.breadcrumb li {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--indigo-dark);
}

/* --- Navigation Layout --- */
.nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    flex: 1;
    margin: 0;
    padding: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--indigo-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-contact-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.contact-btn {
    display: inline-block;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 8px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    /* transition: background 0.3s; */
    /* border: none; */
    /* box-shadow: 0 1px 4px 0 var(--primary-red); */
}

.contact-btn:hover,
.contact-btn:focus {
    background: var(--indigo-dark);
    color: #fff;
    border: 1px solid var(--indigo-dark);
    box-shadow: 0 2px 8px 0 var(--indigo-dark);

}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dropdown-toggle span {
    flex: 1;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hide mobile contact button on desktop */
.mobile-contact-item {
    display: none;
}

/* Show desktop contact button on desktop */
.desktop-contact-btn {
    display: flex;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 270px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary-red);
    padding-left: 30px;
}

/* Banner (Hero) Section - Background Carousel with Fade */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); 
    margin-top: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #222;
}

.hero-carousel-bg, .hero-carousel-bg-next {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s cubic-bezier(.4,0,.2,1);
}

.hero-carousel-bg-next {
    z-index: 2;
    opacity: 0;
}

.hero-carousel-bg-next.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100%;
    /* background: rgba(10,19,35,0.45); */
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%));
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100vw;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 16px #000a;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
    text-shadow: 0 2px 8px #000a;
    display: inline-block;
    font-weight: 600;
    background: var(--primary-red);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 24px 0 #9A0101aa;
}

.cta-button:hover {
    background: var(--indigo-dark);
    color: #fff;
    box-shadow: 0 8px 32px 0 #0a132399;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 2.2rem;
    color: var(--primary-red);
    padding: 8px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.carousel-btn.left { left: 32px; }
.carousel-btn.right { right: 32px; }
.carousel-btn:hover { background: #fff; }

@media (max-width: 900px) {
    .hero, .hero-carousel-bg, .hero-overlay { min-height: 250px; height: 35vh; }
    .hero h1 { font-size: 2rem; }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-card {
        max-width: 100%;
        height: 380px;
    }
}

/* Highlight Section */
.home-highlight {
    background: #f5f6fa;
    padding: 36px 0 30px 0;
    text-align: center;
}

.home-highlight .highlight-text {
    font-size: 2rem;
    font-weight: 600;   
    color: var(--indigo-dark);
    letter-spacing: 0.5px;
    margin: 50px 0;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 160px 0 80px 0;
    background: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--indigo-dark);
    border-bottom: 3px solid var(--indigo-dark);
    display: inline-block;
    padding-bottom: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 10px;
    padding: 0 10px;
}

.service-card {
    height: 400px;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

.service-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,19,35,0.65);
    z-index: 2;
    transition: background 0.3s;
}

.service-card:hover .service-image-overlay {
    background: rgba(10,19,35,0.25);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #1f2937;
    text-align: center;
    margin-top: 18px;
}

.services-action {
    text-align: center;
    margin-top: 30px;
}

.view-sectors-btn {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--indigo-dark); /* or your preferred link color */
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 1.1rem;
    box-shadow: none;
    text-decoration: underline;
    transition: color 0.2s;
    cursor: pointer;
}

.view-sectors-btn i {
    margin-left: 8px;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.2s;
}

.view-sectors-btn:hover, .view-sectors-btn:focus {
    color: var(--primary-red); /* highlight on hover */
    background: none;
    text-decoration: underline;
    box-shadow: none;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-left: 100px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    max-height: 450px;
    border-radius: 10px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--indigo-dark) 0%, #1a1a2e 50%, var(--navy-deep) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-red), #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(154, 1, 1, 0.1); */
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    /* background: rgba(154, 1, 1, 0.2); */
    transform: scale(1.1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; 
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b, var(--primary-red));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(154, 1, 1, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-red), #ff6b6b);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(154, 1, 1, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(154, 1, 1, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    /* background: var(--navy-deep); */
    /* color: white; */
    border-top: 1px solid var(--navy-deep);
    color: var(--navy-deep);
    padding: 15px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Page  */


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        align-items: flex-start;
    }
    
    .nav-menu li {
        text-align: left;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle span {
        text-align: left;
        flex: 1;
    }
    
    .dropdown-toggle i {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 0;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: flex;
        padding: 20px;
        font-size: 1.1rem;
        color: var(--indigo-dark);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: #f8f9fa;
        color: var(--primary-red);
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        width: 100%;
    }
    
    .dropdown-toggle span {
        text-align: left;
        flex: 1;
    }
    
    .dropdown-toggle i {
        margin-left: auto;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    /* Show mobile contact button on mobile */
    .mobile-contact-item {
        display: block;
        border-top: 2px solid var(--primary-red);
        margin-top: 10px;
    }
    
    .mobile-contact-item .contact-btn {
        display: block;
        text-align: center;
        margin: 20px;
        padding: 15px 30px;
        background: var(--primary-red);
        color: white;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-item .contact-btn:hover {
        background: var(--indigo-dark);
        transform: translateY(-2px);
    }
    
    /* Hide desktop contact button on mobile */
    .desktop-contact-btn {
        display: none;
    }
    
    /* Custom scrollbar for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-red);
        border-radius: 3px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--indigo-dark);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        background: #f8f9fa;
        padding: 0;
        margin-top: 0;
        transform: none;
        width: 100%;
        border-top: 1px solid #e5e7eb;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 15px 20px;
        font-size: 1rem;
        color: #6b7280;
    }
    
    .dropdown-menu a:hover {
        background: #e9ecef;
        color: var(--primary-red);
    }
    
    .nav-contact-btn {
        margin-left: 0;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        max-width: 100%;
        height: 350px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .container,
    .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container,
    .container-fluid {
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        max-width: 100%;
        height: 320px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
} 


#goTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    background-color: var(--primary-red); 
    color: white;
    border: none;
    outline: none;
    padding: 12px 18px;
    border-radius: 10%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--navy-deep);
    display: none; 
    transition: opacity 0.3s ease;
}

#goTopBtn:hover {
    background-color: var(--secondary-red);
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* Breadcrumb Styles (Common across pages) */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--indigo-dark);
}

.breadcrumb .separator {
    color: #6b7280;
}

.breadcrumb .current {
    color: #6b7280;
    font-weight: 500;
}

/* Page Header Styles (Common across pages) */
.page-header {
    background: linear-gradient(135deg, var(--indigo-dark), var(--navy-deep));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Overview Styles (Common across service pages) */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.service-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--indigo-dark);
}

.service-intro p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Features Styles (Common across service pages) */
.service-features {
    margin-bottom: 60px;
}

.service-features h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

.feature-description {
    color: #6b7280;
    /* font-size: 1rem; */
    line-height: 1.5;
    text-align: left; 
    padding: 10px
}

/* Benefits Styles (Common across service pages) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Process Steps Styles (Common across service pages) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section Styles (Common across pages) */
.cta-section {
    background: var(--primary-green);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* ===== SOFTWARE SOLUTIONS PAGE SPECIFIC STYLES ===== */
.coming-soon-badge {
    margin-top: 30px;
}

.coming-soon-badge span {
    background: var(--primary-red);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.software-features {
    margin-bottom: 60px;
}

.software-benefits {
    margin-bottom: 60px;
}

.development-timeline {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.development-timeline h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 0 30px;
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--indigo-dark);
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

.early-access {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.early-access h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--indigo-dark);
}

.early-access p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.early-access-form {
    max-width: 500px;
    margin: 0 auto;
}

.early-access-form .form-group {
    display: flex;
    gap: 15px;
}

.early-access-form .form-group input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
}

.early-access-form .form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-red);
}

.early-access-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.early-access-btn:hover {
    background: #d32f2f;
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
    text-align: center;
}

.service-item p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 25px;
}

.service-item ul li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px !important;
}

.service-action {
    text-align: center;
    margin-top: 30px;
}

.learn-more-btn {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* ===== POWER SYSTEM STUDIES PAGE SPECIFIC STYLES ===== */
.analysis-benefits {
    margin-bottom: 60px;
}

.analysis-benefits h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.study-process {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.study-process h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

/* ===== POWER SYSTEM DESIGN PAGE SPECIFIC STYLES ===== */
.service-process {
    background: white;
    padding: 60px;
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-process h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

/* ===== POWER SYSTEM CONSULTANCY PAGE SPECIFIC STYLES ===== */
.consultancy-areas {
    margin-bottom: 60px;
}

.consultancy-areas h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.area-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.area-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
}

.area-item p {
    color: #6b7280;
    line-height: 1.6;
}

.consultancy-process {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.consultancy-process h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.consultancy-benefits {
    margin-bottom: 60px;
}

.consultancy-benefits h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

/* ===== SERVICE STANDARDS STYLES (Common across service pages) ===== */
.service-standards {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.service-standards h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.standard-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
}

.standard-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--indigo-dark);
    font-weight: 600;
}

.standard-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-item ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.standard-item ul li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px !important;
}

/* ===== SERVICE SPECIALIZATIONS STYLES (Common across service pages) ===== */
.service-specializations {
    margin-bottom: 60px;
}

.service-specializations h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
    text-align: center;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialization-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
    font-weight: 600;
}

.specialization-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== SOFTWARE SOLUTIONS PAGE SPECIFIC STYLES ===== */
.technology-stack {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.technology-stack h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
    text-align: center;
}

.tech-intro {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-group {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.tech-group-header {
    margin-bottom: 25px;
}

.tech-group-header h4 {
    font-size: 1.4rem;
    color: var(--indigo-dark);
    font-weight: 600;
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.tech-card {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-red);
}

.tech-logo {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-logo {
    background: var(--indigo-dark);
    transform: scale(1.1);
}

.tech-name {
    font-size: 0.85rem;
    color: var(--indigo-dark);
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-page .contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--indigo-dark);
}

.contact-page .contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-page .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-page .contact-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.contact-page .contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-page .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--indigo-dark);
}

.contact-page .form-group {
    margin-bottom: 20px;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--indigo-dark);
}

.contact-page .form-group input,
.contact-page .form-group textarea,
.contact-page .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus,
.contact-page .form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-page .form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-page .submit-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.contact-page .submit-btn:hover {
    background: var(--indigo-dark);
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--indigo-dark);
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-content i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--indigo-dark);
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.company-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--indigo-dark);
}

.story-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.mv-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--indigo-dark);
}

.mv-item p {
    color: #6b7280;
    line-height: 1.6;
}

.values {
    padding: 80px 0;
    background: white;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--indigo-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--indigo-dark);
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN FOR PAGE-SPECIFIC STYLES ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .features-grid,
    .benefits-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 30px 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-marker {
        margin-right: 20px;
    }

    .timeline-content {
        margin: 0;
    }

    .early-access-form .form-group {
        flex-direction: column;
    }

    .development-timeline,
    .early-access,
    .study-process,
    .service-process,
    .consultancy-process {
        padding: 40px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page .contact-form {
        padding: 30px 20px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
} 







/* ===== INLINE STYLE REPLACEMENTS ===== */

/* Page header background variations */
.page-header-software {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/software.jpg) no-repeat center center / cover !important;
}

.page-header-services {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/services.png) no-repeat center center / cover !important;
}

.page-header-studies {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/studies.jpg) no-repeat center center / cover !important;
}

.page-header-design {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/design-1.jpg) no-repeat center center / cover !important;
}

.page-header-consultancy {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/consult.jpg) no-repeat center center / cover !important;
}

.page-header-contact {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/contact.png) no-repeat center center / cover !important;
}

.page-header-about {
    background: linear-gradient(135deg, rgb(28 31 53 / 100%), rgb(0 0 0 / 60%)), url(/images/about-1.jpg) no-repeat center center / cover !important;
}

/* Link styles */
.link-no-decoration {
    text-decoration: none;
    color: inherit;
}

.link-no-decoration:hover {
    text-decoration: none;
    color: inherit;
}

/* Form input styles */
.form-input-white {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-input-white-rounded {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    color: #333;
}

/* Map styles */
.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
} 







/* ===== CUSTOM DROPDOWN STYLING (NAVBAR-STYLE) ===== */

/* Custom dropdown container */
.custom-dropdown {
    position: relative;
    width: 100%;
}

/* Custom dropdown toggle button */
.custom-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.custom-dropdown-toggle:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.custom-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .custom-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Custom dropdown menu */
.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Webkit scrollbar styling */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.custom-dropdown.active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.custom-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.custom-dropdown-menu li {
    padding: 12px 25px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-dropdown-menu li:hover {
    background: #f8f9fa;
    color: var(--primary-red);
    padding-left: 30px;
}

.custom-dropdown-menu li.selected {
    background: #f8f9fa;
    color: var(--primary-red);
}

/* Dark theme dropdown */
.custom-dropdown-dark .custom-dropdown-toggle {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.custom-dropdown-dark .custom-dropdown-toggle:hover {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.custom-dropdown-dark .custom-dropdown-menu {
    /* background: rgba(255, 255, 255, 0); */
    background :linear-gradient(135deg, var(--navy-deep)  0%, #1a1a2e 50%, var(--indigo-dark) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Light theme scrollbar */
.custom-dropdown-light .custom-dropdown-menu {
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.custom-dropdown-light .custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

.custom-dropdown-light .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.custom-dropdown-dark .custom-dropdown-menu::before {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.custom-dropdown-dark .custom-dropdown-menu li {
    color: #fff;
}

.custom-dropdown-dark .custom-dropdown-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-red);
}

.custom-dropdown-dark .custom-dropdown-menu li.selected {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-red);
}

/* Placeholder styling */
.custom-dropdown-text.placeholder {
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
}

.custom-dropdown-dark .custom-dropdown-text.placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-dropdown-toggle {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .custom-dropdown-menu li {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 






