:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --secondary-color22: #3567b3c4;
    --accent-color: #800020;
    --text-dark: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    --gradient-primary2: linear-gradient(135deg, #2c5aa09a 0%, #2347819d 100%);
    --gradient-accent: linear-gradient(45deg, #800020, #8d0124);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
    --transition-smooth: all 0.3s ease;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Amiri', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Enhanced Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-medium);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.navbar-nav .nav-link {
    font-weight: bolder;
    font-size: 1.2rem;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover; */
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.986);
    margin-bottom: 2.5rem;
}

.btn-primary-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: var(--text-dark);
}

/* Section Styles - Reduced padding */
.section-padding {
     padding-bottom: 2%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem; /* Reduced from 3rem */
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

/* About Section */
.about-section {
    background: linear-gradient(45deg, var(--secondary-color), rgba(44, 90, 160, 0.05));
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%232c5aa0' opacity='0.1'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(transparent 60%, rgba(27, 19, 99, 0.5) 40%);
    padding: 0 5px;
    border-radius: 3px;
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* box-shadow: var(--shadow-heavy); */
    height: 100%;
    /* min-height: 350px; */
    /* margin-top: 30px; */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sectors Section - New Modern Design */
.sectors-section {
    background: var(--gradient-primary);;
    position: relative;
    overflow: hidden;
}

.sectors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.sectors-section .section-title {
     color: white;
    margin-bottom: 3rem;
  
}

.sectors-section .section-title::after {
    background: var(--gradient-accent);
}

.sector-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* height: 100%; */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4075c5;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    /* box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3); */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sector-icon {
    width: 90px;
    height: 90px;
    background:#4075c5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 2rem;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.sector-card h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.sector-card p {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.partners-section .section-title {
    color: white;
   
}

.partners-section .section-title::after {
    background: var(--gradient-accent);
}

.partners-section .lead {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.partner-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 8px;
    box-shadow: var(--shadow-light);
}

.partner-slide img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition-smooth);
}

.partner-slide:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--text-dark) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

.footer-title {
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links i {
    margin-left: 8px;
    width: 18px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #20c55a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.05);
}

/* Counter */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .about-content {
        font-size: 1rem;
        padding: 20px;
    }
    
    .sector-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .section-padding {
        padding: 40px 0; /* Further reduced for mobile */
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem; /* Reduced for mobile */
    }
    
    .section-title::after {
        height: 4px;
        bottom: -12px;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-custom {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .about-content {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .sector-card {
        padding: 2rem 1.5rem;
        margin-bottom: 20px;
    }
    
    .sector-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .sector-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .sector-card p {
        font-size: 0.95rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .partner-slide {
        height: 100px;
        padding: 12px;
    }
    
    .partner-slide img {
        max-height: 70px;
        max-width: 130px;
    }
    
    .footer {
        padding: 2.5rem 0 1.2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .btn-primary-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .about-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .about-content p {
        margin-bottom: 1.2rem;
    }
    
    .sector-card {
        padding: 1.8rem 1.2rem;
    }
    
    .sector-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .counter {
        font-size: 1.8rem;
    }
    
    .partner-slide {
        height: 90px;
    }
    
    .partner-slide img {
        max-height: 60px;
        max-width: 110px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn-primary-custom {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
    
    .counter {
        font-size: 1.6rem;
    }
}
 .stats-section {
    background: var(--gradient-primary);
    padding: 50px 0; /* Reduced from 60px */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.stats-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stats-image img:hover {
    transform: scale(1.02);
}

.stats-items {
    flex: 1;
    padding: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item h5 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem; /* Reduced from 40px */
     color: black;
     padding-top: 2%;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

@media (max-width: 992px) {
    .stats-content {
        flex-direction: column;
    }
    
    .stats-image, .stats-items {
        width: 100%;
        padding: 10px;
    }
    
    .counter {
        font-size: 2.5rem;
    }
}
.footer-links li {
display: flex;
align-items: center;
gap: 6px; /* space between icon and text */
}

.footer-links i {
font-size: 1.2rem;
color: #555; /* adjust icon color if needed */
}

.footer-links a {
color: inherit; /* keep same color as text */
text-decoration: none;
}

.footer-links a:hover {
color: #007bff; /* change on hover */
text-decoration: underline;
}
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.shape.cleaning {
    color: #f8f9fa;
    font-size: 3rem;
}

.shape.technology {
    color: #4075c5;
    font-size: 2.5rem;
}

.shape.beauty {
    color: #800020;
    font-size: 2.8rem;
}

/* Different floating animations */
@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(100vw) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatDiagonal {
    0% {
        transform: translate(-100px, 100vh) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.12;
    }
    100% {
        transform: translate(100vw, -100px) rotate(360deg);
        opacity: 0;
    }
}

.shape:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 25s; }
.shape:nth-child(2) { left: 15%; animation-delay: -3s; animation-duration: 30s; }
.shape:nth-child(3) { left: 25%; animation-delay: -6s; animation-duration: 28s; }
.shape:nth-child(4) { left: 35%; animation-delay: -9s; animation-duration: 35s; }
.shape:nth-child(5) { left: 45%; animation-delay: -12s; animation-duration: 22s; }
.shape:nth-child(6) { left: 55%; animation-delay: -15s; animation-duration: 32s; }
.shape:nth-child(7) { left: 65%; animation-delay: -18s; animation-duration: 27s; }
.shape:nth-child(8) { left: 75%; animation-delay: -21s; animation-duration: 29s; }
.shape:nth-child(9) { left: 85%; animation-delay: -24s; animation-duration: 26s; }
.shape:nth-child(10) { left: 95%; animation-delay: -27s; animation-duration: 31s; }
.shape:nth-child(11) { left: 10%; animation-delay: -30s; animation-duration: 24s; }
.shape:nth-child(12) { left: 20%; animation-delay: -33s; animation-duration: 33s; }
.shape:nth-child(13) { left: 30%; animation-delay: -36s; animation-duration: 28s; }
.shape:nth-child(14) { left: 40%; animation-delay: -39s; animation-duration: 25s; }
.shape:nth-child(15) { left: 50%; animation-delay: -42s; animation-duration: 30s; }

/* Horizontal floating shapes */
.shape.horizontal {
    animation: floatHorizontal 18s infinite linear;
}
.shape.horizontal:nth-child(16) { top: 15%; animation-delay: -2s; }
.shape.horizontal:nth-child(17) { top: 25%; animation-delay: -6s; }
.shape.horizontal:nth-child(18) { top: 35%; animation-delay: -10s; }
.shape.horizontal:nth-child(19) { top: 45%; animation-delay: -14s; }
.shape.horizontal:nth-child(20) { top: 55%; animation-delay: -18s; }
.shape.horizontal:nth-child(21) { top: 65%; animation-delay: -22s; }
.shape.horizontal:nth-child(22) { top: 75%; animation-delay: -26s; }
.shape.horizontal:nth-child(23) { top: 85%; animation-delay: -30s; }

/* Diagonal floating shapes */
.shape.diagonal {
    animation: floatDiagonal 22s infinite linear;
}
.shape.diagonal:nth-child(24) { animation-delay: -3s; }
.shape.diagonal:nth-child(25) { animation-delay: -7s; }
.shape.diagonal:nth-child(26) { animation-delay: -11s; }
.shape.diagonal:nth-child(27) { animation-delay: -15s; }
.shape.diagonal:nth-child(28) { animation-delay: -19s; }

/* Reverse floating shapes */
.shape.reverse {
    animation: floatReverse 26s infinite linear;
}
.shape.reverse:nth-child(29) { left: 12%; animation-delay: -4s; }
.shape.reverse:nth-child(30) { left: 38%; animation-delay: -8s; }
.shape.reverse:nth-child(31) { left: 62%; animation-delay: -12s; }
.shape.reverse:nth-child(32) { left: 78%; animation-delay: -16s; }

/* Curved floating shapes */
.shape.curved {
    animation: floatCurved 24s infinite linear;
}
.shape.curved:nth-child(33) { animation-delay: -5s; }
.shape.curved:nth-child(34) { animation-delay: -10s; }
.shape.curved:nth-child(35) { animation-delay: -15s; }
.shape.curved:nth-child(36) { animation-delay: -20s; }
.shape.curved:nth-child(37) { animation-delay: -25s; }
.shape.curved:nth-child(38) { animation-delay: -30s; }
.shape.curved:nth-child(39) { animation-delay: -35s; }
.shape.curved:nth-child(40) { animation-delay: -40s; }

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    100% {
        text-shadow: 2px 2px 20px rgba(255,255,255,0.5);
    }
}

.hero-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-primary-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.4);
    color: white;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 15%;
    left: 8%;
    animation-delay: -2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-custom {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .shape {
        font-size: 2rem;
    }

    .shape.technology {
        font-size: 1.8rem;
    }

    .shape.beauty {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .btn-primary-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .shape {
        font-size: 1.5rem;
    }
}

/* Rest of the styles remain the same */
.section-padding {
    padding-bottom: 2%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.about-section {
    background: linear-gradient(45deg, var(--secondary-color), rgba(44, 90, 160, 0.05));
    position: relative;
}
.sector-modal {
display: none;
position: fixed;
z-index: 1050;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
opacity: 0;
transition: all 0.3s ease;
}

.sector-modal.show {
display: flex;
opacity: 1;
align-items: center;
justify-content: center;
}

.modal-content {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
/* backdrop-filter: blur(20px); */
margin: 20px;
padding: 0;
border: none;
border-radius: 25px;
max-width: 600px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
transform: scale(0.8) translateY(50px);
transition: all 0.3s ease;
position: relative;
}

.sector-modal.show .modal-content {
transform: scale(1) translateY(0);
}

.modal-header {
background: var(--gradient-primary);
color: white;
padding: 25px 30px 20px;
border-radius: 25px 25px 0 0;
position: relative;
overflow: hidden;
}



.modal-icon {
width: 70px;
height: 70px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
font-size: 1.8rem;
color: white;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal-title {
font-size: 1.8rem;
font-weight: 700;
margin: 0;
text-align: center;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-body {
padding: 30px;
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
}

.modal-body p {
margin-bottom: 1.5rem;
}

.modal-body .highlight {
background: linear-gradient(transparent 60%, rgba(128, 0, 32, 0.3) 40%);
padding: 2px 6px;
border-radius: 3px;
font-weight: 600;
}

.close-btn {
position: absolute;
top: 15px;
right: 20px;
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
font-size: 1.5rem;
width: 35px;
height: 35px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.close-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.1);
}

/* Updated Sector Card Styles */
.sector-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 25px;
padding: 2.5rem 2rem;
text-align: center;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
height: 300px; /* Fixed height for consistency */
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.3);
margin-bottom: 25px;
transition: all 0.4s ease;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.sector-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}



.learn-more-btn {
background: #1f4e96;
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-weight: 600;
margin-top: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.learn-more-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px #4075c5;
color: white;
}

.learn-more-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
transition: all 0.6s ease;
transform: translate(-50%, -50%);
}

.learn-more-btn:hover::before {
width: 300px;
height: 300px;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
.modal-content {
margin: 10px;
width: 95%;
max-height: 90vh;
}

.modal-header {
padding: 20px 25px 15px;
}

.modal-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
margin-bottom: 12px;
}

.modal-title {
font-size: 1.5rem;
}

.modal-body {
padding: 25px 20px;
font-size: 1rem;
}

.sector-card {
height: 280px;
padding: 2rem 1.5rem;
}
}

@media (max-width: 576px) {
.modal-content {
margin: 5px;
width: 98%;
border-radius: 20px;
}

.modal-header {
padding: 18px 20px 12px;
border-radius: 20px 20px 0 0;
}

.modal-title {
font-size: 1.3rem;
}

.modal-body {
padding: 20px 15px;
font-size: 0.95rem;
}

.sector-card {
height: 260px;
padding: 1.8rem 1.2rem;
}
}
