/* ---------------- Global Reset ---------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    direction: ltr;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #333;
}

/* ---------------- Navbar ---------------- */
.main-header {
    background: #0f172a;
}

/* Navbar link styles */
.navbar .nav-link {
    position: relative;
    transition: 0.3s;
}

.navbar .nav-link.active {
    color: #00bcd4 !important;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00bcd4;
    border-radius: 5px;
}

/* Custom Navbar */
.custom-navbar {
    background-color: #1a237e !important;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}

/* Navbar shrink effect on scroll */
.custom-navbar.shrink {
    padding: 5px 0;
    background-color: #151b60 !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* Logo text */
.brand-text {
    line-height: 1;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Navbar link colors and hover effect */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #00e5ff;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Button styles */
.btn-outline-light {
    border-width: 2px;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background-color: #00e5ff;
    border-color: #00e5ff;
    color: #000 !important;
}

/* Mobile navbar adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }
}

/* ---------------- Hero Section ---------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3rem 0;
    background-image: linear-gradient(90deg, rgba(26, 35, 126, 1) 50%, rgba(255, 255, 255, 0) 50%), url('../assets/images/Hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 34, 126, 0.842);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero content styling */
.hero-content {
    color: #fff;
    padding: 2rem 1rem;
}

.tagline {
    color: #00bcd4;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.05;
}

.hero-content h1 span {
    color: #00bcd4;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    border-radius: .6rem;
    border: 4px solid rgba(0, 188, 212, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    position: relative;
    left: 25px;
    top: 51px;
}

/* Hero logo positioning */
.hero-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateX(-71px) translateY(75px);
}

/* ---------------- Buttons ---------------- */
.btn-info {
    background-color: #0099ad !important;
    border-color: #00bcd4 !important;
    color: rgb(218, 216, 216);
}

.btn-info:hover {
    background-color: #07e2ff !important;
    border-color: #00e1ff !important;
    color: white;
}

.btn-outline-info {
    color: #00bcd4 !important;
    border-color: #00bcd4 !important;
}

.btn-outline-info:hover {
    background-color: #00bcd4;
    color: #fff !important;
}

/* ---------------- About Section ---------------- */
.about-aura-steel {
    background-color: #0f172a;
    color: #ffffff;
    padding: 6rem 0;
}

.about-heading {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.about-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-heading h2 span {
    color: #06b6d4;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: #06b6d4;
    margin-left: -49px;
}

/* About section image styling */
.aura-image {
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    object-fit: cover;
}

/* Story text styling */
.our-story h3 {
    color: #06b6d4;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.our-story p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

/* Values cards styling */
.value-card {
    background-color: #1e293b;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #06b5d481;
    transition: all 0.35s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2);
    border: 1px solid #06b6d4;
}

.value-card .bi {
    font-size: 2.2rem;
    color: #06b6d4;
    margin-bottom: 1.2rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ---------------- Scroll Animation ---------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Responsive Adjustments ---------------- */
@media (max-width: 992px) {
    .hero {
        background-image: url('../assets/images/Hero.jpg');
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-image img {
        position: absolute;
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ---------------- Vision, Mission, Goals Cards ---------------- */
.vmg-card {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #06b5d481;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.vmg-card h4 {
    color: #06b6d4;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.vmg-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Card hover effect */
.vmg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2);
    border: 1px solid #06b6d4;
}

/* Section layout */
.vision-mission-goals {
    background-color: #0f172a;
    color: #ffffff;
    padding: 6rem 0;
}

/* Card heading (icon + title) */
.card-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    color: #06b6d4;
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.card-heading h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-heading h3 span {
    color: #06b6d4;
}

/* Paragraphs inside cards */
.vmg-card p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: 1rem;
}

/* Scroll animation with custom easing */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .vision-mission-goals {
        padding: 4rem 0;
    }

    .vmg-card {
        padding: 2rem;
    }

    .card-heading h3 {
        font-size: 1.35rem;
    }
}

/* ---------------- Services Section ---------------- */
.our-services {
    background-color: #0f172a;
    color: #ffffff;
    padding: 6rem 0;
}

/* Section heading */
.section-heading {
    margin-bottom: 5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading h2 span {
    color: #06b6d4;
}

.section-heading .subtitle {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #06b6d4;
    margin: 1.2rem auto 0;
}

/* Service card */
.service-card {
    background-color: #1e293b;
    border: 1px solid var(--card-color);
    border-radius: 10px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Card hover effect */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(var(--card-color-rgb), 0.25);
    border-color: rgba(var(--card-color-rgb), 0.9);
}

/* Service icon styling */
.service-icon {
    width: 65px;
    height: 65px;
    background-color: var(--card-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.35s ease;
}

.service-icon .bi {
    font-size: 1.9rem;
    color: #ffffff;
}

/* Icon hover effect */
.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 18px var(--card-color);
}

/* Card text */
.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.service-card p {
    font-size: 0.97rem;
    opacity: 0.8;
    line-height: 1.65;
}

/* ==========================
   Scroll Animation
========================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Flex row center alignment */
.row {
    display: flex-end;
    justify-content: center;
}

/* ==========================
   Responsive Adjustments
========================== */
@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon .bi {
        font-size: 1.7rem;
    }
}

@media (max-width: 575px) {
    .our-services {
        padding: 4rem 0;
    }
}

/* ==========================
   Our Projects Section
========================== */
.our-projects {
    background-color: #0f172a;
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.our-projects .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.our-projects .section-heading h2 span {
    color: #06b6d4;
}

.our-projects .section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #06b6d4;
    margin: 1.2rem auto 0;
}

/* Project Card */
.project-card {
    background-color: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.25);
    border-color: #06b6d4;
}

/* Project Image */
.project-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

/* Project Info */
.project-info {
    padding: 1.5rem;
    text-align: left;
}

.project-info h5 {
    color: #06b6d4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.project-info p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Projects Section Responsive */
@media (max-width: 768px) {
    .our-projects {
        padding: 4rem 0;
    }

    .project-info {
        padding: 1rem;
    }
}

/* ==========================
   Our Clients Section
========================== */
.our-clients {
    background-color: #0f172a;
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.our-clients .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.our-clients .section-heading h2 span {
    color: #06b6d4;
}

.our-clients .section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #06b6d4;
    margin: 1.2rem auto 0;
}

/* Client Logo Card */
.client-logo {
    background-color: #1e293b;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.35s ease;
}

/* Hover Effects */
.client-logo:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 8px 18px rgba(6, 182, 212, 0.15);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Clients Section Responsive */
@media (max-width: 768px) {
    .our-clients {
        padding: 4rem 0;
    }

    .client-logo {
        padding: 1rem;
    }
}

/* ==========================
   Get In Touch Section
========================== */
.get-in-touch {
    background-color: #0f172a;
    color: #ffffff;
    padding: 5rem 0;
}

/* Section heading */
.section-heading h2 {
    font-weight: 700;
    font-size: 2.2rem;
}

.section-heading h2 span {
    color: #3b82f6;
}

.section-heading .subtitle {
    opacity: 0.8;
    font-size: 1rem;
}

/* Contact info cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #1e293b;
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Contact icon inside card */
.contact-icon {
    font-size: 1.8rem;
}

/* Contact image styling */
.contact-image {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}

.contact-image:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Form input fields */
.contact-form .form-control {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.contact-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
    background-color: #223044;
}

.form-control::placeholder {
    color: #ffffff3b;
}

/* Submit button */
.send-btn {
    background-color: #3b82f6;
    border: none;
    color: white;
    padding: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.send-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.4);
}

/* Scroll animation for elements */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translate(0) !important;
    transition: all 0.6s ease;
}

/* Mobile responsiveness */
@media (max-width: 575px) {
    .get-in-touch {
        padding: 3rem 0;
    }
}

/* Social media buttons */
.social-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.facebook-btn {
    background-color: #1877f2;
}

.linkedin-btn {
    background-color: #0a66c2;
}

.whatsapp-btn {
    background-color: #25D366;
}

.email-btn {
    background-color: #ff914d;
}

.social-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* ==========================
   Footer Section
========================== */
.footer-aura {
    background-color: #0f172a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid #3b83f64d;
    box-shadow: 0 -4px 25px rgba(6, 182, 212, 0.12);
    /* subtle glow effect */
}

/* Footer logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #06b6d4;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Company tagline */
.tagline {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 250px;
}

/* Footer headings */
.footer-heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Quick links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.6rem;
}

.quick-links a {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
}

.quick-links a:hover {
    opacity: 1;
    color: #06b6d4;
    padding-left: 6px;
}

/* Footer social icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.35s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #06b6d4;
    transform: scale(1.12);
}

/* Footer copyright */
copyright {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    opacity: 0.75;
    font-size: 0.9rem;
}

/* ==========================
   Scroll Animation
========================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer copyright */
footer .copyright p {
    text-align: center;
}

/* ==========================
   Responsive Footer
========================== */
@media (max-width: 768px) {
    .footer-aura {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo i {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* ==========================
   Loading Screen
========================== */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-color: #f2f2f2;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Loader style */
.loader {
    text-align: center;
    color: #fff;
}

.loader img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 10px;
}

.loader span {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================
   Testimonials Section
========================== */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    direction: rtl;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #003466;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    max-width: 300px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.client-name {
    font-weight: bold;
    color: #003466;
    margin-bottom: 5px;
}

.client-title {
    font-size: 14px;
    color: #777;
}

/* ==========================
   WhatsApp Button
========================== */
#whatsappBtn {
    position: fixed;
    bottom: 100px;
    right: 31px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 14px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    width: 50px;
    height: 50px;
}

#whatsappBtn:hover {
    transform: scale(1.1);
}

/* Fix icons alignment */
.fa-brands,
.fab {
    position: relative;
    bottom: 4px;
}

/* ==========================
   Gallery Section
========================== */
.gallery-title {
    font-size: 2rem;
    font-weight: bold;
    color: #00bcd4;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #00bcd4;
    padding: 5px;
    box-sizing: border-box;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* Zoom icon on hover */
.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.img-wrapper:hover .zoom-icon {
    opacity: 1;
    pointer-events: auto;
}

/* Image zoom effect */
.img-wrapper:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================
   Profile Section
========================== */
.profile-body {
    background: #1C6582 url('../assets/images/pattern-1.png') repeat !important;
}

/* Row styling */
.row {
    border: 20px rgb(255, 255, 255) !important;
}

/* ==========================
   Buttons
========================== */
.btn-home {
    background-color: #00bcd4;
}

.btn-home:hover {
    background-color: #1C6582;
    color: #ffffff;
}