/*
Theme Name: TAQA Theme
Theme URI: https://taqa-uae.com/
Author: Your Name
Author URI: https://your-website.com/
Description: A custom theme for the TAQA company profile, designed to work with the TAQA Elementor Widgets plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taqa-theme
Tags: one-column, custom-menu, full-width-template, elementor
*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    max-width: 100%;
    max-height: 700px;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}
.total-sec{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 65px;
}
.total-sec img{
    max-width: 250px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.total-sec p{
    font-weight: bold;
    font-size: 16px;
}
.total-list {
    list-style: decimal;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo-circle {
    width: 150px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center
}


.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-menu li a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #2563eb;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1f2937;
}

.title-main {
    display: block;
    color: #2563eb;
    font-size: 72px;
    letter-spacing: 4px;
}

.title-sub {
    display: block;
   font-size: 36px;
    line-height: 1.4;
    color: #6b7280;
    font-weight: 400;
    margin-top: 10px;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.hero-stats .stat-item p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero-image {
    position: relative;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(29, 78, 216, 0.1));
}

/* Social Icons */
.social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateX(-10px) scale(1.1);
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: #2563eb;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Responsive Design */


    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }




/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects */
.hero-image:hover {
    transform: scale(1.02);
}

.director-info:hover .director-name {
    color: #1d4ed8;
    transition: color 0.3s ease;
}

.content-section:hover .accent-strip {
    width: 12px;
    transition: width 0.3s ease;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.content-des{
       margin-bottom: 30px; 
           font-size: 15px;
    color: #333;
    text-align: center;
}
.section-title.white {
    color: white;
}

.section-text {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: white;
    padding: 0;
}
::marker{
    
}

.about-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content {
    padding: 40px;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 0;
}
.services-section h4{
   font-size: 20px;
}
.sec-bottom{
    margin-top: 40px;
    text-align: center;
    font-size: 22px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: #f8f9fa;
    padding: 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

/* Projects Section */
.projects-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 0;
}
.projects-section .section-container {
    width: 100%;
    max-width: 90%;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-content {
    padding: 30px;
}

.project-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    text-align: center;
}

.project-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 0;
}



.contact-info {
    padding: 40px 0;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    max-width: 100% ! IMPORTANT;
        overflow: hidden;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Achievements Section */
.achievements-section {
    background: white;
    padding: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.achievement-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    margin-top: 10px;
}

.achievement-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 15px;
}

.achievement-year {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 0;
}

.team-section li{
    color:#fff;
    font-size: 19px;
    padding: 10px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed from repeat(auto-fit, minmax(280px, 1fr)) */
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    overflow: hidden;
}


.team-image {
    height: auto;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
   border-radius: 2px;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 0;
}
.statistics-section img{
    margin: auto;
    display: block;
    border-radius: 2px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.statistic-item {
    text-align: center;
    color: white;
}

.statistic-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statistic-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.statistic-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1d4ed8;
}

.news-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(5px);
}

/* Partners Section */
.partners-section {
    background: #f8f9fa;
    padding: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.partner-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
}

.partner-logo:hover .partner-placeholder {
    color: #2563eb;
}

/* Loading and Transition Effects */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-menu a:focus,
.social-icon:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .social-icons,
    .scroll-indicator,
    .hero-buttons {
        display: none;
    }

    .hero-section {
        padding-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Don't Miss Mobile Section */
.dont-miss-mobile {
    display: none;
}

/* Social Icons Mobile Section */
.social-icons-mobile {
    display: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-image .image-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .navbar {
        background: white;
        border-bottom: 2px solid #000;
    }

    .social-icon {
        border: 2px solid #2563eb;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-arrow {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Performance optimizations */
.hero-image img,
.project-card img,
.section-image img {
    will-change: transform;
    Border-radius: 10px !important;
}

/* Ensure proper stacking context */
.navbar {
    z-index: 1000;
}

.nav-menu {
    z-index: 999;
}

.nav-toggle {
    z-index: 1001;
}

.social-icons {
    z-index: 100;
}

.scroll-indicator {
    z-index: 10;
}

/* Menu open body styles */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-menu {
        gap: 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 30px;
    }

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

    .title-main {
        font-size: 56px;
    }

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

    .hero-description {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-image {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .social-icons {
        right: 20px;
    }

    .about-section .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}

/* Enhanced mobile menu animations */
@media (max-width: 768px) {
    .nav-menu li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }

    /* Don't Miss section animation */
    .dont-miss-mobile {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-menu.active .dont-miss-mobile {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    /* Social Icons Mobile animation */
    .social-icons-mobile {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-menu.active .social-icons-mobile {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    .nav-toggle span {
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Show Don't Miss section in mobile menu */
    .dont-miss-mobile {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .dont-miss-header {
        color: white;
        padding: 12px 20px;
        text-align: center;
        margin: 0 -20px 20px -20px;
    }

    .dont-miss-header h3 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        color: black;
    }

    .dont-miss-content {
        padding: 0 20px;
    }

    .dont-miss-item {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f3f4f6;
    }

    .dont-miss-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .dont-miss-image {
        flex-shrink: 0;
        width: 60px;
        height: 45px;
        border-radius: 6px;
        overflow: hidden;
    }

    .dont-miss-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dont-miss-text {
        flex: 1;
    }

    .dont-miss-text h4 {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 6px 0;
        color: #1f2937;
    }

    .dont-miss-meta {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        color: #6b7280;
        text-transform: uppercase;
        font-weight: 500;
    }

    .advertise-banner {
        background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        padding: 15px;
        text-align: center;
        margin: 20px -20px 0 -20px;
        border-top: 1px solid #e5e7eb;
    }

    .advertise-banner h4 {
        font-size: 11px;
        font-weight: 700;
        color: #6b7280;
        margin: 0 0 4px 0;
        letter-spacing: 1px;
    }

    .advertise-banner p {
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
    }

    /* Social Icons Mobile Section */
    .social-icons-mobile {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .social-header {
        color: white;
        padding: 12px 20px;
        text-align: center;
        margin: 0 -20px 15px -20px;
    }

    .social-header h3 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        color: #000;
    }

    .social-icons-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .social-icons-mobile .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        border-radius: 12px;
        text-decoration: none;
        font-size: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .social-icons-mobile .social-icon:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }

    .social-icons-mobile .social-icon:nth-child(1) {
        background: linear-gradient(135deg, #1877f2, #0d5dbf);
    }

    .social-icons-mobile .social-icon:nth-child(2) {
        background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    }

    .social-icons-mobile .social-icon:nth-child(3) {
        background: linear-gradient(135deg, #0077b5, #005885);
    }

    .social-icons-mobile .social-icon:nth-child(4) {
        background: linear-gradient(135deg, #e4405f, #c13584);
    }

    .social-icons-mobile .social-icon:nth-child(5) {
        background: linear-gradient(135deg, #ff0000, #cc0000);
    }

    .social-icons-mobile .social-icon:nth-child(6) {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }
}

/* Improved hamburger animation */

/* Menu overlay when open */
@media (max-width: 768px) {
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-toggle{
        display: block  !important;
    }
    #about .section-content .stats-grid{
        grid-template-columns: repeat(2, 2fr);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
    .navbar {
        padding: 0;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .nav-logo-circle {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 0;
        overflow-y: auto;
        border-left: 1px solid #e5e7eb;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
    }

    .nav-menu li:last-child {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        font-size: 12px;
        font-weight: 500;
        padding: 18px 25px;
        display: block;
        width: 100%;
        color: #333;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 0;
        text-decoration: none;
        border-left: 3px solid transparent;
        box-sizing: border-box;
    }

    .nav-menu li a:hover {
        background: #f3f4f6;
        color: #2563eb;
        padding-left: 35px;
    }

    .nav-menu li a:active {
        background: #e2e8f0;
    }

    .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: #2563eb;
        transform: scaleY(0);
        transition: transform 0.3s ease;
        transform-origin: bottom;
    }

    .nav-menu li a:hover::before {
        transform: scaleY(1);
    }

    .nav-menu li a::after {
        content: '›';
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #9ca3af;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .nav-menu li a:hover::after {
        color: #2563eb;
        right: 25px;
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        padding: 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: white;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #2563eb;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #2563eb;
    }

    .hero-section {
        padding-top: 90px;
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 20px;
        gap: 30px;
    }

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

    .title-main {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .title-sub {
        font-size: 28px;
        margin-top: 5px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: space-around;
        margin-bottom: 30px;
    }

    .hero-stats .stat-item h3 {
        font-size: 28px;
    }

    .hero-stats .stat-item p {
        font-size: 12px;
    }

    .hero-image {
        height: 250px;
        width: 100%;
        max-width: none;
    }

    /* Hide main social icons on mobile */
    .social-icons {
        display: none;
    }

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

    .social-icon:hover {
        transform: translateY(-3px) scale(1.05);
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .section-container {
        padding: 50px 20px;
    }

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

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

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

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

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

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

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vm-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .project-content {
        padding: 25px;
    }

    .achievement-card {
        padding: 30px 20px;
    }

    .team-info {
        padding: 25px;
    }

    .news-content {
        padding: 25px;
    }

    .partner-logo {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 15px;
    }

    .nav-logo-circle {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        width: 280px;
        padding: 15px 0 25px 0;
    }

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

    .hero-section {
        padding-top: 80px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 25px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .title-main {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .title-sub {
        font-size: 22px;
        margin-top: 3px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-buttons {
        margin-bottom: 25px;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 15px;
        margin-bottom: 25px;
    }

    .hero-stats .stat-item h3 {
        font-size: 24px;
    }

    .hero-stats .stat-item p {
        font-size: 11px;
    }

    .hero-image {
        height: 200px;
        border-radius: 15px;
    }

    /* Keep social icons hidden on mobile */
    .social-icons {
        display: none;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .section-container {
        padding: 40px 15px;
    }

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

    .section-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .vm-card {
        padding: 20px;
    }

    .vm-card h3 {
        font-size: 24px;
    }

    .vm-card p {
        font-size: 14px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h4 {
        font-size: 18px;
    }

    .project-content p {
        font-size: 14px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-details h4 {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .achievement-card {
        padding: 25px 15px;
    }

    .achievement-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-image {
        height: 200px;
    }

    .team-info {
        padding: 20px;
    }

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

    .statistic-number {
        font-size: 36px;
    }

    .statistic-label {
        font-size: 18px;
    }

    .statistic-description {
        font-size: 14px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-image {
        height: 150px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 14px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .partner-logo {
        padding: 25px 15px;
    }

    .partner-placeholder {
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 24px;
    }

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

    .title-sub {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .hero-stats .stat-item {
        text-align: center;
    }

    .btn-primary, .btn-secondary {
        width: 160px;
        padding: 10px 20px;
        font-size: 13px;
    }

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

    .service-card {
        padding: 20px 12px;
    }

    .vm-card {
        padding: 15px;
    }

    .contact-form {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .company-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 25px 15px;
    }
}
.contact-icon svg {
    filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(29deg) brightness(102%) contrast(100%);
    width: 20px;
}

