:root {
    --primary: #d35400;
    --secondary: #e67e22;
    --accent: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --gold: #f1c40f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Unique Topbar */
.topbar {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    padding: 0;
    position: relative;
    overflow: hidden;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.topbar-item {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
    padding: 5px 15px;
    border-radius: 20px;
}

.topbar-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.topbar-item i {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: rotate(360deg) scale(1.1);
}

/* Unique Modern Header */
.modern-header {
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.modern-header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(211, 84, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-text h2 {
    margin: 0;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo-text p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Desktop Mega Menu */
.mega-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu>li {
    position: relative;
}

.mega-menu>li>a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.mega-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}

.mega-menu>li>a:hover::after,
.mega-menu>li>a.active::after {
    width: 100%;
}

.mega-menu>li>a:hover {
    color: var(--primary);
}

.mega-menu>li>a i {
    font-size: 18px;
}

.mega-menu .dropdown-chevron {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.mega-menu>li:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
}

.mega-menu>li:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.mega-dropdown a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateX(10px);
}

.mega-dropdown a i {
    color: var(--primary);
    transition: color 0.3s;
}

.mega-dropdown a:hover i {
    color: white;
}

/* Multi-level Dropdown Desktop */
.mega-dropdown-item {
    position: relative;
}

.mega-dropdown-item>a .dropdown-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s;
}

.mega-dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s;
}

.mega-dropdown-item:hover .mega-dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-dropdown-item:hover>a .dropdown-arrow {
    transform: rotate(-90deg);
}

/* Offcanvas Menu Toggle */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(211, 84, 0, 0.4);
}

/* Offcanvas Styling */
.offcanvas-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu li {
    border-bottom: 1px solid #eee;
}

.offcanvas-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.offcanvas-menu a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.offcanvas-menu a i {
    font-size: 20px;
    width: 30px;
}

/* Offcanvas Submenu */
.offcanvas-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(211, 84, 0, 0.05);
}

.offcanvas-submenu.active {
    max-height: 600px;
}

.offcanvas-submenu>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-submenu>li>a {
    padding-left: 60px;
    font-size: 14px;
}

.offcanvas-submenu .offcanvas-submenu {
    background: rgba(211, 84, 0, 0.08);
}

.offcanvas-submenu .offcanvas-submenu>li>a {
    padding-left: 80px;
    font-size: 13px;
}

.menu-item-with-dropdown {
    position: relative;
}

.menu-item-with-dropdown>a,
.submenu-item-with-dropdown>a {
    position: relative;
    padding-right: 50px !important;
}

.dropdown-toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s;
    pointer-events: none;
}

.dropdown-toggle-icon.active {
    transform: translateY(-50%) rotate(180deg);
}

.submenu-item-with-dropdown {
    position: relative;
}

.submenu-item-with-dropdown>a {
    padding-left: 60px !important;
}

.submenu-item-with-dropdown .dropdown-toggle-icon {
    right: 15px;
    font-size: 14px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.8), rgba(243, 156, 18, 0.6));
}

.hero-content {
    position: relative;
    top: 160px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeInUp 1s 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s 0.4s backwards;
}

.hero-btn {
    padding: 15px 40px;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-btn.primary {
    background: white;
    color: var(--primary);
}

.hero-btn.primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 40px;
    border-radius: 10px;
    background: white;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-img-float {
    position: absolute;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    bottom: -30px;
    right: -30px;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text h3 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.2);
}

.stat-box h4 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.stat-box p {
    margin: 0;
    color: #666;
    font-weight: 600;
}

/* Clients/Projects Section */
.clients-section {
    padding: 80px 0;
    background: white;
}

.client-carousel {
    display: flex;
    overflow: hidden;
    padding: 40px 0;
}

.client-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    width: 250px;
    height:180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(211, 84, 0, 0.3);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
}

.product-card:hover .product-image i {
    transform: rotate(360deg) scale(1.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
}

.product-info {
    padding: 30px;
}

.product-info h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.product-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.05);
}

.product-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1600') center/cover fixed;
    position: relative;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(211, 84, 0, 0.9));
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-title h2,
.services-section .section-title p {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.5s;
}

.service-card:hover {
    background: white;
    transform: translateY(-15px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h4 {
    color: white;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.service-card:hover h4,
.service-card:hover p {
    color: var(--dark);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.9), rgba(243, 156, 18, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.contact-info-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.4);
}

.map-container {
    margin-top: 50px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .mega-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-img-float {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}



/* Company Details & Leadership Section Styles */
.company-details-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.company-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.company-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
    display: inline-block;
}

.company-card i {
    color: #f1c40f;
}

.company-card a {
    color: #3498db;
    transition: color 0.3s ease;
}

.company-card a:hover {
    color: #2980b9;
}

.company-card address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
}

/* Team Card Styles */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.team-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info .designation {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info .phone {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-info .phone i {
    color: #f1c40f;
}

/* Regards Section */
.regards-section {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.regards-section h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-image {
        height: 250px;
    }
    
    .company-card {
        margin-bottom: 20px;
    }
    
    .team-info h4 {
        font-size: 1.2rem;
    }
    
    .team-info .designation {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 220px;
    }
}