/* ===========================
   Al Zaitoon International
   Professional Website Styles
   =========================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #37417D;
    --secondary-color: #F77522;
    --accent-color: #F77522;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.4s ease;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header.scrolled .navbar {
    padding: 5px 0;
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.brand-main {
    font-size: 28px;
    line-height: 1;
    color: var(--primary-color);
}

.brand-sub {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 8px !important;
    margin: 0 5px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.navbar-nav .dropdown-item {
    color: var(--text-color);
    padding: 10px 25px;
    transition: var(--transition);
    font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 30px;
}

.navbar-nav .dropdown-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-menu {
        animation: fadeInDown 0.3s ease;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    .hero {
    background: linear-gradient(135deg, rgba(55, 65, 125, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('images/hero-banner.jpg') center/cover no-repeat !important;
}
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(247, 117, 34, 0.15) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 117, 34, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 117, 34, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-in;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin-top: -5px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(55, 65, 125, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light-color);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow);
}

.feature-box {
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
	height:250px;
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-box p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* ===== MILESTONES SECTION ===== */
.milestones {
    background: var(--white);
}

.milestone-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.milestone-card:hover::before {
    transform: scaleX(1);
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.milestone-year {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.milestone-content i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.milestone-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.95;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover .service-icon,
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    margin-left: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 117, 34, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    background: var(--white);
}

.industry-card {
    background: var(--light-color);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 30px;
    border: 2px solid transparent;
    cursor: pointer;
}

.industry-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.industry-card i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.industry-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.industry-card h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--dark-color);
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--light-color);
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.process-card:hover::before {
    transform: scaleY(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(55, 65, 125, 0.1);
    line-height: 1;
}

.process-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-card ul {
    list-style: none;
    padding: 0;
}

.process-card ul li {
    padding: 10px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 30px;
}

.process-card ul li::before {
    content: '00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-content {
    padding: 25px;
    text-align: center;
    background: var(--light-color);
}

.team-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--light-color);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-stars {
    margin-top: 15px;
}

.testimonial-stars i {
    color: #ffc107;
    margin-right: 3px;
}

/* ===== DIRECTOR MESSAGE ===== */
.director-message {
    background: var(--white);
}

.director-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.director-image img {
    width: 100%;
    display: block;
}

.director-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow);
}

.director-content {
    padding-left: 30px;
}

.director-content .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.director-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.director-signature h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.director-signature span {
    color: var(--text-light);
    font-size: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light-color);
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-icon i {
    font-size: 35px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(55, 65, 125, 0.1);
}

/* Contact Page Specific */
.contact-page-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-map-wrapper {
    flex: 1;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* ===== GO TO TOP BUTTON ===== */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ===== PAGE HERO (For Service Pages) ===== */
.page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(55, 65, 125, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .director-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .contact-page-wrapper {
        flex-direction: column;
    }

    .contact-map-wrapper iframe {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar .col-md-6 {
        text-align: center !important;
    }

    .top-bar a {
        display: block;
        margin: 5px 0;
    }

    .cta-section h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-section .text-end {
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .brand-main {
        font-size: 22px;
    }

    .brand-sub {
        font-size: 12px;
    }

    .hero {
        min-height: 80vh;
    }
}
/* =================================================================
   ADD THESE SECTIONS TO THE END OF YOUR style.css FILE
   ================================================================= */

/* ===== DROPDOWN HOVER EFFECT (Desktop Only) ===== */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0;
        transition: all 0.3s ease;
        animation: fadeInDown 0.3s ease;
    }

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

/* Mobile dropdown remains click-based */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .navbar-nav .dropdown-item {
        padding: 8px 15px;
    }
}

/* ================================================
   SECTION SCROLL TRANSITIONS
   ================================================ */

/* Remove default section opacity */
section {
    opacity: 1 !important;
    transform: none !important;
}

/* Add scroll reveal animation to all sections */
.about,
.services,
.milestones,
.industries,
.process,
.team,
.testimonials,
.director-message,
.contact,
.stats {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When section is visible */
.about.section-reveal,
.services.section-reveal,
.milestones.section-reveal,
.industries.section-reveal,
.process.section-reveal,
.team.section-reveal,
.testimonials.section-reveal,
.director-message.section-reveal,
.contact.section-reveal,
.stats.section-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Section header animation */
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Section tag animation */
.section-tag {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.2s;
}

.section-header.reveal .section-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Section title animation */
.section-header h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    transition-delay: 0.3s;
}

.section-header.reveal h2 {
    opacity: 1;
    transform: translateY(0);
}

/* Section description animation */
.section-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.5s;
}

.section-header.reveal p {
    opacity: 1;
    transform: translateY(0);
}

/* Content reveal animations */
.service-card,
.industry-card,
.testimonial-card,
.team-card,
.milestone-card,
.process-card,
.feature-box,
.contact-info-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visible state */
.service-card.card-reveal,
.industry-card.card-reveal,
.testimonial-card.card-reveal,
.team-card.card-reveal,
.milestone-card.card-reveal,
.process-card.card-reveal,
.feature-box.card-reveal,
.contact-info-card.card-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered card animations */
.card-reveal:nth-child(1) { transition-delay: 0.1s; }
.card-reveal:nth-child(2) { transition-delay: 0.2s; }
.card-reveal:nth-child(3) { transition-delay: 0.3s; }
.card-reveal:nth-child(4) { transition-delay: 0.4s; }
.card-reveal:nth-child(5) { transition-delay: 0.5s; }
.card-reveal:nth-child(6) { transition-delay: 0.6s; }
.card-reveal:nth-child(7) { transition-delay: 0.7s; }
.card-reveal:nth-child(8) { transition-delay: 0.8s; }

/* ================================================
   ABOUT SECTION COLUMN ANIMATIONS - FIXED
   ================================================ */

/* Target the actual columns in About section */
.about .row > .col-lg-6 {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* First column (image) - slide from left */
.about .row > .col-lg-6:first-child {
    transform: translateX(-60px);
}

/* Second column (content) - slide from right */
.about .row > .col-lg-6:last-child {
    transform: translateX(60px);
}

/* When revealed - first column */
.about .row > .col-lg-6.reveal-left {
    opacity: 1;
    transform: translateX(0);
}

/* When revealed - second column */
.about .row > .col-lg-6.reveal-right {
    opacity: 1;
    transform: translateX(0);
}

/* Director section columns */
.director-message .row > .col-lg-5,
.director-message .row > .col-lg-7 {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-message .row > .col-lg-5 {
    transform: translateX(-60px);
}

.director-message .row > .col-lg-7 {
    transform: translateX(60px);
}

.director-message .row > .col-lg-5.reveal-left,
.director-message .row > .col-lg-7.reveal-right {
    opacity: 1;
    transform: translateX(0);
}

/* Remove conflicting styles */
.about-image {
    opacity: 1 !important;
    transform: none !important;
}

.director-image {
    opacity: 1 !important;
    transform: none !important;
}

/* CTA section reveal */
.cta-section {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section.section-reveal {
    opacity: 1;
    transform: scale(1);
}

/* Stats section reveal (fade in from top) */
.stats {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats.section-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Stat cards animation */
.stat-card {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.card-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-card:nth-child(1) { transition-delay: 0.2s; }
.stat-card:nth-child(2) { transition-delay: 0.4s; }
.stat-card:nth-child(3) { transition-delay: 0.6s; }

/* Hero section - always visible */
.hero {
    opacity: 1 !important;
    transform: none !important;
}

/* Footer reveal */
.footer {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer.section-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Contact form reveal */
.contact-form {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Map reveal */
.contact-map-wrapper {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.3s;
}

.contact-map-wrapper.reveal {
    opacity: 1;
    transform: translateX(0);
}

.contact-map-wrapper iframe {
    opacity: 1 !important;
    transform: none !important;
}

/* CTA button pulse animation */
.cta-section .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 117, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(247, 117, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 117, 34, 0);
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* =================================================================
   END OF ADDITIONS - Your style.css is now complete!
   ================================================================= */
