* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
/* Ensure the Header acts as the container */
/* 1. Reset the Header Container */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* Remove any background colors that might mix with the image */
    background: none !important; 
}


/* Add this to the top of your CSS */
/* GLOBAL TEXT STYLES */
body {
    /* RADIAL SHADING: Center Glow -> Dark Edges */
    background: radial-gradient(circle at center top, #10262e 0%, #02050a 100%);
    
    background-attachment: fixed; /* Keeps the shading in place when scrolling */
    min-height: 100vh;            /* Ensures it covers the full screen */
    margin: 0;                    /* Removes default browser white bars */
    
    /* Font Settings */
    color: #ffffff;
}

p {
    /* The "Cool Silver" Color - Professional & Easy on eyes */
    color: #e9eff1; 
    
    font-size: 14px;
    font-weight: 300; /* Thin, elegant font weight */
    line-height: 1.8; /* Slightly more spacing for readability */
    padding: 10px;
    letter-spacing: 0.5px; /* Adds a high-tech feel */
}
/* Style for bold words inside paragraphs */
p strong, p b {
    color: #c7c4c4;       /* "Dark White" / Platinum */
    font-weight: 700;     /* Extra Bold */
    letter-spacing: 0.5px;
}

/* 2. The "Raw" Image Style */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* SCALING: Cover the screen without stretching */
    object-fit: cover;
    object-position: center;

    /* PURITY: Force 100% visibility and sharpness */
    opacity: 1 !important;            /* No transparency */
    filter: none !important;          /* No blur, no contrast changes */
    backdrop-filter: none !important; /* No glass effects */
    mix-blend-mode: normal !important; /* No blending with background */
    
    z-index: -1; /* Keep it behind the text */
}

/*mobile view of image*/
@media (max-width: 768px) {

    .header {
        min-height: 40vh;
        padding-bottom: 40px;   /* space for vision text */
    }

    .vision-bottom {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        padding: 0 20px;
    }

}
/* DARK OVERLAY */
.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4,9,30,0.7), rgba(127, 143, 206, 0.7));
    z-index: -1;
}
/* ===================================== */
/* DEFAULT (Desktop & Large Screens) */
/* ===================================== */
.text-box1 {
    position: absolute;
    top: 50%;                 /* Center vertically */
    right: 1%;               /* 10% spacing from the right edge */
    transform: translateY(-50%); /* Adjust vertical alignment */
    text-align: right;        /* Align the text itself to the right */
    color: #fff;              /* Default text color is White */
    z-index: 2;
}

.text-box1 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 70px);
    line-height: 1.1;
    font-weight: 600;
    margin: 0;

}

.text-box1 p {
    margin-top: 25px;
    text-align: right;   /* keep right aligned */
    max-width: 500px;
    font-size: clamp(0.9rem, 1.2vw, 16px);
    line-height: 1.6;
}

/* Grey Text */
.grey-text {
    color: #6e6e6e;
    font-weight: 600;
}

/* Teal Text */
.teal-text {
    color: #00d2be;
    font-weight: 600;
}

/* ===================================== */
/* TABLET */
/* ===================================== */

@media (max-width: 992px) {
    .text-box1 {
        right: 5%;
        max-width: 450px;
    }
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media (max-width: 768px) {

    .text-box1 {
        right: 4%;
        max-width: 90%;
    }

    .text-box1 h1 {
        line-height: 1.3;
    }

    .text-box1 p {
        max-width: 100%;
    }
}

/* ===================================== */
/* SMALL MOBILE */
/* ===================================== */

@media (max-width: 480px) {

    .text-box1 {
        right: 3%;
        max-width: 95%;
    }

    .text-box1 h1 {
        font-size: 1.6rem;
    }

    .text-box1 p {
        font-size: 0.9rem;
    }
}


/* menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img {
    width: 150px;
}
.nav-links {
    flex: 1;
    text-align: right;
      z-index: 1001;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 62px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

/* --- interface download section --- */
/* =========================================
   INTERFACE SECTION & PAYMENT MODAL
   ========================================= */

/* Ensure the main container is the reference point for the popup */
.propulsion-container {
    position: relative;
    overflow: hidden; /* Keeps the modal within the rounded box corners */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #0b0c10; /* Match your site's dark theme */
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
}

/* 1. Center alignment for the text side */
.propulsion-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the H1, P, and Button */
    text-align: center;
}

.propulsion-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.propulsion-text p {
    color: #c5c6c7;
    line-height: 1.6;
    max-width: 400px;
}

/* 2. Image side */
.propulsion-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.propulsion-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 3. THE PAYMENT INTERFACE (Modal Overlay) */
.modal {
    display: none; /* Hidden by default */
    position: absolute; /* Locks inside the propulsion-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.92); /* Dark overlay */
    backdrop-filter: blur(12px); /* Blurs the background content */
    z-index: 100;
}

/* The small interface box inside the modal */
.modal-content {
    background-color: #0b0f1a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly centers the box */
    padding: 40px 30px;
    border: 1px solid #f44336; /* Red aerospace accent */
    width: 90%;
    max-width: 380px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(244, 67, 54, 0.25);
}

/* Close button style */
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #f44336;
}

/* 4. BUTTON STYLES */
.hero-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px;
}

.red-btn {
    border: 1px solid #f44336;
    color: #f44336;
}

.red-btn:hover {
    background: #f44336;
    color: #fff;
}
/* Professional Curved & Blinking Button */
.glow-on-hover {
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 2px solid var(--accent); /* Teal border */
    border-radius: 50px;             /* The "Curve" - Pill shape */
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    outline: none;
    text-transform: uppercase;
    
    /* The "Blink" Effect - Base Animation */
    animation: statusPulse 2s infinite ease-in-out;
}

/* Blinking/Pulsing Animation */
@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0px rgba(0, 210, 190, 0.4);
        border-color: rgba(0, 210, 190, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 210, 190, 0.8);
        border-color: rgba(0, 210, 190, 1);
    }
    100% {
        box-shadow: 0 0 0px rgba(0, 210, 190, 0.4);
        border-color: rgba(0, 210, 190, 0.5);
    }
}

/* Hover State: Solid Glow */
.glow-on-hover:hover {
    background: var(--accent);
    color: #02050a;
    box-shadow: 0 0 30px var(--accent);
    animation: none; /* Stop blinking on hover */
}

/* Specific style for the final Pay button */
.pay-btn {
    background: #f44336;
    color: white;
    border: none;
    width: 100%;
    margin-top: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media(max-width: 768px) {
    .propulsion-container {
        flex-direction: column;
        padding: 20px;
    }
    .propulsion-text h1 {
        font-size: 28px;
    }
    .modal-content {
        width: 85%;
        padding: 25px;
    }
}

/* --- NEW VISION BOTTOM SECTION --- */
/* Update the container to position it on the RIGHT side */
/* --- NEW VISION BOTTOM SECTION --- */
.vision-bottom {
    position: absolute;
    bottom: 40px;           /* Distance from bottom */
    
    /* Create the 2cm gap on both sides */
    left: 2cm; 
    right: 2cm;
    
    /* Remove width: 45% so it can stretch to both edges */
    width: auto; 
    
    /* Reset transform if it was used for centering before */
    transform: none; 
    
    /* Visual styles */
    padding: 20px;
    z-index: 2;
    
    /* Optional: semi-transparent background to make text readable */
    
}

/* Update paragraph styles */
.vision-bottom p {
    margin: 0;
    color: #fff9f9;
    font-size: 15px;
    line-height: 1.6;
    
    /* Standard left alignment for readability across the full width */
    text-align: left; 
}

/* Mobile Responsive: Center it back on small screens */
@media(max-width: 700px) {
    .vision-bottom {
        width: auto;
        right: 5%;
        left: 5%;
        transform: none; /* Centers it again on mobile */
        text-align: center;
        bottom: 20px;
        padding: 15px;
    }
    .vision-bottom p {
        text-align: center;
    }
}

nav .fa {
    display: none;
}
@media(max-width:768px){

  .nav-links {
    position: absolute;
    /* Changed gradient to be darker at the top for better icon contrast */
    background: linear-gradient(#0f172a, #111); 
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    transition: 0.5s; /* 1s is a bit slow for mobile, 0.5s feels snappier */
    padding-top: 60px; /* Space for the cancel icon */
    z-index: 1001;
  }

  .nav-links ul li {
    display: block;
    padding: 15px 25px; /* Better touch targets for mobile */
  }

  /* Target the 'X' specifically inside the nav-links */
  .nav-links .fa-times {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px; /* Moves it to the top left of the drawer */
    color: var(--accent); /* Uses your cyan color so it stands out */
    font-size: 25px;
    cursor: pointer;
  }
  

  /* The Hamburger Menu button on the main nav */
  nav > .fa-bars {
    display: block;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
}

.container{max-width:1400px;margin:auto;padding:0 5%;}
.section-padding{padding:80px 0;}
.highlight{color:var(--accent);}
/* ================= ABOUT ================= */

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.about-img{
width:100%;
height:400px;
object-fit:cover;
filter:grayscale(100%);
transition:var(--transition);
}

.about-img:hover{filter:grayscale(0);}

@media(max-width:768px){
.hero-content h1{font-size:3rem;}
.grid-2{grid-template-columns:1fr;}
}
.section-padding.container {
    padding: 50px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    /* Deep dark blue to black gradient with a teal glow in the corner */
    background: radial-gradient(circle at top right, rgba(0, 210, 190, 0.15), transparent), 
                linear-gradient(135deg, #050a15 0%, #02050a 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
/* Optional: Add a decorative 'Corner Notch' for a high-tech look */
.section-padding.container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(225deg, var(--accent) 10%, transparent 10%);
}


/* --- Course Section --- */
.course {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}
h1 {
    font-size: 36px;
    font-weight: 600;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;           /* space between cards */
    flex-wrap: wrap;
    padding-top: 20px;
}
.course-col {
    flex-basis: 31%;
    /* PROFESSIONAL DARK THEME */
    background: #111a2b; /* Dark Space Navy */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle glass border */
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.course-col h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #fff; /* Ensure title is white */
}
.course-col p {
    color: #cfd8dc; /* Soft Silver for readability */
}
/* Hide Quick Links on mobile (screens smaller than 768px) */
@media (max-width: 768px) {
    .footer-col.links {
        display: none;
    }
}

.course-col:hover {
    /* Cyan Aerospace Glow */
    box-shadow: 0 0 25px rgba(0, 210, 190, 0.2); 
    transform: translateY(-10px);
}
@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* --- Campus Section --- */
.campus {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}
.campus-col {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img {
    width: 100%;
    display: block;
}
.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover {
    background: rgba(226,0,0,0.7);
}
.layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3 {
    bottom: 49%;
    opacity: 1;
}

/* --- popupSection --- */


/* --- Facilities Section --- */
.facilities {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}
/* CARD / BOX */
.facilities-col {
    flex: 1;              /* both take equal width */
    max-width: 500px;     /* keeps them from stretching too much */
    min-height: 420px;    /* SAME HEIGHT */
    
    background: linear-gradient(145deg, #0a1228, #111a3a);
    border-radius: 14px;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;

    display: flex;
    flex-direction: column;
}

.facilities-col img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    border-radius: 10px;
}

/* TITLE */
.facilities-col h3 {
    margin: 10px 0;
    font-size: 20px;
}

/* PARAGRAPH */
.facilities-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd8dc;
}
/* --- Testimonials Section --- */
.testimonials {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}
.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    
    /* PROFESSIONAL DARK THEME */
    background: #111a2b; /* Dark Space Navy */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
}

.testimonial-col:hover {
    background: #1c263b; /* Slightly lighter on hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.testimonial-col h3 {
    margin-top: 15px;
    text-align: left;
    color: #fff;
}
.testimonial-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p {
    padding: 0;
    color: #cfd8dc; /* Cool Silver for readability */
}
.testimonial-col h3 {
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa {
    color: #f44336;
}
@media(max-width: 700px) {
    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}
@media (max-width: 768px) {
    .facilities-col {
        max-width: 100%;
        min-height: auto;
    }
}


/* --- Call To Action --- */
.cta {
    margin: 40px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 60px 0;
}
.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px) {
    .cta h1 {
        font-size: 24px;
    }
}

/* --- Footer --- */


.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;

    border-radius: 8px;   /* ← THIS makes it square with soft edges */
    transition: 0.3s ease;
}

/* Email */
.social-icon.email {
    background: #EA4335;
       border-radius: 6px;
}

/* Instagram Official Gradient */
.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, #285AEB 90%);
           border-radius: 6px;
}

/* YouTube */
.social-icon.youtube {
    background: #FF0000;
      border-radius: 10px; 
}

/* LinkedIn */
.social-icon.linkedin {
    background: #0A66C2;
       border-radius: 6px;
}

/* Hover Effect */
.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fa-heart-o {
    color: #f44336;
}
/* ------- Sub Header (For all inner pages) ------- */
.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/immm.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-top: 100px;
}

/* ------- About Us Page ------- */
.about-us {
    width: 80%;
    margin:  0 auto;
    padding: 40px 0;
    text-align: center;
}
.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img {
    width: 100%;
}
.about-col h1 {
    padding-top: 0;
}
.about-col p {
    padding: 15px 0 25px;
    color: rgb(199, 197, 197)
}
.red-btn {
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover {
    color: #fff;
}
.avionics-list {
    list-style: none;      /* remove default bullets */
    padding-left: 0;
}

.avionics-list li {
    position: relative;
    padding-left: 30px;    /* space for arrow */
    margin-bottom: 12px;
}

.avionics-list li::before {
    content: "\27a4";         /* arrow symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #6e76e9;        /* your accent color */
    font-weight: bold;
}


/* ------- avionics hover button details ------- */
/* --- HIDDEN CONTENT ANIMATION --- */
#more-content {
    display: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

#more-content.show {
    display: block;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTON FADE OUT EFFECT --- */
/* We add this class via Javascript when clicked */
.hide-btn {
    opacity: 0.5; /* Dims the button */
    pointer-events: none; /* Makes it unclickable */
    cursor: default;
    content: "READING...";
}

/* ------- Blog Page Content ------- */
.blog-content {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}
.blog-left {
    flex-basis: 65%;
}
.blog-left img {
    width: 100%;
    height: 300px;
}
.blog-left h2 {
    color: #e6e0e0;
    font-weight: 600;
    margin: 30px 0;
    display: flex;
    justify-content: center;

}
.blog-left p {
    color: #999;
    padding: 0;
}
.blog-right {
    flex-basis: 32%;
}
.blog-right h3 {
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px 0;
    box-sizing: border-box;
}

/* ------- Blog Page Comment Box ------- */
.comment-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3 {
    text-align: left;
}
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button {
    margin: 10px 0;
}
@media(max-width: 700px) {
    .sub-header h1 {
        font-size: 24px;
    }
}
/* Mobile View */
@media (max-width: 768px) {
    .sub-header {
        height: 50vh;   /* Half screen height */
    }
}
.sales-note {
    /* Precise 8px sizing */
    font-size: 8px !important;
    
    /* Muted Teal: Fits the Agnihotri Aerospace theme */
    color: rgba(0, 210, 190, 0.7); 
    
    /* UI Polish */
    text-transform: uppercase;
    letter-spacing: 1.5px; /* High spacing makes tiny text look 'premium' */
    margin-top: 8px;
    font-weight: 500;
    display: block;
    opacity: 0.9;
}
/* ------- Contact Page ------- */
.location {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}
.location iframe {
    width: 100%;
}
.contact-us {
    width: 80%;
    margin: auto;
}
.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p {
    padding: 0;
}
.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/* dropdown box */
/* parent */
.dropdown {
    position: relative;
}

/* dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 180px;
    background: rgba(10, 18, 40, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;

    list-style: none;
    padding: 6px 0;
    margin-top: 8px;

    /* animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: opacity 0.3s ease,
                transform 0.3s ease,
                visibility 0.3s;

    z-index: 1000;
    overflow: hidden;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* list items */
.dropdown-menu li {
    display: block;
    width: 100%;
}

/* links */
.dropdown-menu li a {
    display: block;
    padding: 8px 16px;   /* ✅ proper height */
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
}

/* hover effect */
.dropdown-menu li a:hover {
    background: rgba(12, 228, 66, 0.18);
}


#typing {
  border-right: 3px solid #fff;
  padding-right: 6px;
  white-space: nowrap;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% { border-color: transparent; }
  50% { border-color: #fff; }
  100% { border-color: transparent; }
}
/* Footer Base */
.footer {
  background: linear-gradient(135deg, #0a0f24, #14182e);
  color: #ccc;
  padding: 12px 8px 12px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  min-height: 200px; /* medium height */
  overflow: hidden;
  width: 100%;
  text-align: center;

}

/* Star effect */
.footer::before {
  content: '';
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: url('images/stars.jpg') repeat; /* subtle star texture */
  opacity: 0.05;
  z-index: -1;
}

/* Columns */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

/* About Column */
.footer-col.about h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.footer-col.about p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #1c1f35;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(255,255,255,0.1);
}

.footer-socials a:hover {
  background: #f44336;
  transform: scale(1.2);
  box-shadow: 0 0 12px #f44336;
}
/* Contact Column Alignment Fix */
.footer-col.contact {
  text-align: left;
}

/* Links Column */
.footer-col.links h3,
.footer-col.contact h3 {
text-align: left;
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.links ul li {
  margin-bottom: 10px;
}

.footer-col.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col.links ul li a:hover {
  color: #f44336;
}

/* Contact Column */
.footer-col.contact p {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-col.contact {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* forces perfect left alignment */
}

.footer-col.contact h3,
.footer-col.contact h5,
.footer-col.contact p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
}

.footer-col.contact p {
  margin: 5px 0 15px 0;
  line-height: 1.7;
  font-size: 14px;
}
.footer-col.contact h3 {
  margin-bottom: 6px;   /* reduce gap below heading */
}

.footer-col.contact p {
  margin-top: 0;        /* remove extra top spacing */
  margin-bottom: 12px;  /* control spacing between sections */
}



/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  margin-top: 25px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  justify-content: center;
  gap:300px;
}

.footer-bottom ul li a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom ul li a:hover {
  color: #f44336;
}

/* Responsive */
@media(max-width: 900px){
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col.about p {
    max-width: 100%;
  }
  .footer-bottom ul {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== PROPULSION & AVIONICS SECTION (UPDATED LAYOUT) ===== */
.propulsions{
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

/* 1. MAIN CONTAINER: Stacks Top Row and Bottom Row vertically */
.propulsions-container {
    display: flex;
    flex-direction: column; /* KEY: Stacks items vertically */
    gap: 50px;              /* Space between text section and bottom images */

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none !important;
    box-shadow: 0 4px 30px rgba(17, 17, 17, 0.2);
    border-radius: 20px;
    padding: 60px;
}

/* 2. TOP ROW: Text (Left) + Main Image (Right) */
.propulsions-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

/* Text Side Styles */
.propulsions-text {
    flex: 1;
}

.propulsions-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 210, 190, 0.4); 
}

.propulsions-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #e6e6e6; 
}

/* Main Image Styles (The Big Box) */
.propulsions-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.propulsions-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;

    /* 1. Remove hard border */
    border: none !important;
    outline: none !important;

    /* 2. CENTERED SHADOW (All Sides) */
    /* Syntax: 0px offset-x, 0px offset-y, 50px blur, 10px spread */
    box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.7); 

    /* 3. FADE ALL 4 SIDES (Rectangular Vignette) */
    /* This combines a horizontal fade AND a vertical fade */
    
    /* Standard Syntax (Firefox) */
    mask-image: 
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;

    /* Webkit Syntax (Chrome, Safari, Edge) */
    -webkit-mask-image: 
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
}
/* 3. BOTTOM ROW: The 3 Small Images */
.propulsions-bottom-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.propulsions-bottom-row img {
    flex: 1;                /* Forces all 3 to have equal width */
    height: 180px;          /* Sets a fixed height for uniformity */
    object-fit: cover;      /* Ensures image fills the box without stretching */
    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2); /* Dark tint behind images */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect for Bottom Images */
.propulsions-bottom-row img:hover {
    transform: translateY(-8px);
    border-color: #e1f5f3; /* Teal glow on hover */
    box-shadow: 0 10px 20px rgba(0, 210, 190, 0.15);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .propulsions-container {
        padding: 30px 20px;
    }
    
    .propulsions-top-row {
        flex-direction: column; /* Stack Text over Main Image */
        text-align: center;
    }

    .propulsions-bottom-row {
        flex-direction: column; /* Stack the 3 small images */
    }

    .propulsions-bottom-row img {
        width: 100%;
        height: 200px;
    }
}
/* --- 3. BOTTOM ROW: SLIDESHOW CAROUSEL --- */
.propulsions-bottom-row {
    position: relative;
    width: 100%;
    height: 350px; /* Increased container height to fit larger images */
    margin-top: 30px;
    overflow: hidden;
}
/* Image Wrapper for Popup positioning */
.slide-image-wrapper {
    position: relative;
    display: inline-block;
    pointer-events: all; /* Ensures hover works */
}
/* THE SLIDE (Hidden by default) */
.propulsion-slide {
    position: absolute;      /* Stacks slides on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;           /* Puts Image and Text side-by-side */
    align-items: center;
    justify-content: center; /* Centers content in the row */
    gap: 50px;               /* Space between Image and Text */
    
    opacity: 0;              /* Invisible */
    transition: opacity 1s ease-in-out; /* Smooth fade 1s */
    pointer-events: none;
}

/* THE ACTIVE SLIDE (Visible) */
.propulsion-slide.active-slide {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

/* INCREASED IMAGE SIZE */
.propulsion-slide img {
    height: 280px; /* Increased from 180px */
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3); 
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}
/* AI POPUP MESSAGE */
.ai-popup {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    color: #000;
    padding: 6px 15px;
    font-size: 4px;
    font-weight: 700;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0; /* Hidden by default */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* SHOW POPUP ON HOVER */
.slide-image-wrapper:hover .ai-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* TEXT STYLE */
.slide-text {
    max-width: 450px;
}

.slide-text h3 {
    color: #00d2be;          /* Teal Accent */
    font-size: 15px;
    margin-bottom: 10px;
  
    letter-spacing: 1px;
}

.slide-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #e6e6e6;
}
/*ai generated content*/
.slide-image-wrapper:hover img {
    transform: scale(1.05);
    border-color: #00d2be;
}


/* MOBILE RESPONSIVE UPDATE */
@media (max-width: 900px) {
    .propulsions-bottom-row {
        height: 380px;       /* Taller to fit stacked content */
    }
    
    .propulsion-slide {
        flex-direction: column; /* Stack Image on top of Text */
        gap: 20px;
        text-align: center;
    }
    
    .slide-text {
        text-align: center;
        padding: 0 10px;
    }
    
    .propulsion-slide img {
        height: 140px;       /* Smaller image for mobile */
    }
}



/* ===== PROPULSION & AVIONICS SECTION (Borderless Glass) ===== */
.propulsion {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

/* GLASS CONTAINER */
.propulsion-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    /* --- GLASS EFFECT (No Border) --- */
    background: rgba(255, 255, 255, 0.03); /* Very transparent fill */
    backdrop-filter: blur(20px);           /* Strong blur for the glass look */
    -webkit-backdrop-filter: blur(20px);
    
    /* REMOVED THE BORDER HERE */
    border: none !important; 
    
    /* Optional: A soft shadow helps it stand out without a border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); 
    
    border-radius: 20px;
    padding: 60px;
}

/* TEXT SIDE */
.propulsion-text {
    flex: 1;
}

.propulsion-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 210, 190, 0.4); 
}

.propulsion-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #e6e6e6; 
}

/* IMAGE SIDE */
/* IMAGE SIDE */
.propulsion-image {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for the mask to sit correctly */
}
/* IMAGE SIDE - RECTANGULAR FADE */
/* IMAGE SIDE - FADE ALL 4 SIDES */
.propulsion-image img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    
    /* 1. Remove borders/shadows */
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent;

    /* 2. COMPOSITE MASK (Fades Top, Bottom, Left, & Right) */
    /* Syntax for Chrome, Safari, Edge */
    -webkit-mask-image: 
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in; 

    /* Syntax for Firefox / Standard */
    mask-image: 
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;

    /* Optional: Slight hover zoom */
    transition: transform 0.5s ease;
}

.propulsion-image img:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .propulsion-container {
        flex-direction: column;
        padding: 40px 20px;
    }
    .propulsion-image img {
        margin-top: 30px;
    }
}
/* Work With Us Section */
.work-with-us {
    width: 90%;
    margin: 30px auto;
    text-align: center;
    color: #fff;
}

.work-with-us h1 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
}

/* Row of boxes */
.work-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Box */
.work-card {
    flex: 1 1 300px;
    
    /* PROFESSIONAL DARK THEME */
    background: #0f1724; /* Very Dark Blue */
    border: 1px solid rgba(0, 219, 195, 0.2); /* Tech Cyan Border */
    
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
    outline: none;
}

/* Title Color */
.work-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff; /* White Text */
    margin-bottom: 15px;
}

/* Paragraph Color */
.work-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8; /* Light Grey Text */
}

/* Hover Effect */
.work-card:hover {
    background: linear-gradient(45deg, #0f2f3a, #0088cc, #ff0000);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4); /* Blue Glow */
    border-color: transparent;
}

.work-card:hover h3,
.work-card:hover p {
    color: #ffffff;
}
/* Optional: remove focus outline if clicked via keyboard */
.work-card:focus {
    outline: none;
}



/*gallery*/
.space-gallery {
    background: #0b0f1a;
    padding: 100px 0;
    color: white;
    text-align: center;
    perspective: 1200px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 380px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease, opacity 0.8s;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Media */
.card img,
.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Info */
.info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: 0.5s;
}

.card:hover .info {
    transform: translateY(0);
}

/* Hover Zoom */
.card:hover img,
.card:hover video {
    transform: scale(1.2);
}

/* Arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 30px;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Media */
.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Side slides dark */
.slide:not(.active) {
    opacity: 0.4;
    filter: brightness(50%);
}

/* Center slide highlight */
.slide.active {
    transform: scale(1.05);
    opacity: 1;
    filter: none;
    z-index: 2;
}

/* Hover zoom */
.slide:hover img,
.slide:hover video {
    transform: scale(1.2);
}

/* Info panel */
.info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transform: translateY(40px);
    transition: 0.4s;
}

.slide:hover .info {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 10px; }
.next { right: 10px; }
@media (max-width: 768px) {
    .card {
        width: 300px;
        height: 350px;
    }
    .nav {
        font-size: 24px;
        padding: 8px 12px;
    }
}

/* ===== SPACE HERO SECTION ===== */


.space-hero {
    position: relative;
    height: 100vh;
    background: url("images/space-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
    overflow: hidden;
    animation: spaceDrift 80s linear infinite;
}

@keyframes spaceDrift {
    0% { background-position: center 0; }
    100% { background-position: center 300px; }
}

#stars { position: absolute; inset: 0; z-index: 0; }

.earth-glow {
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(0, 180, 255, 0.9) 0%,
        rgba(0, 120, 255, 0.6) 30%,
        rgba(0, 50, 150, 0.4) 50%,
        rgba(0,0,0,0) 70%
    );
    box-shadow: 0 0 120px rgba(0,150,255,0.7),
                0 0 200px rgba(0,100,255,0.5);
    animation: earthRotate 50s linear infinite;
    z-index: 0;
}

@keyframes earthRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

/* Popup animation */
.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s ease;
}

.hero-content.show-hero {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-content p {
    margin: 25px 0;
    color: #ccc;
    line-height: 1.8;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease 0.5s;
}

.hero-content.show-hero .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn-primary {
    padding: 14px 32px;
    background: #00eaff;
    color: black;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
}

.hero-btn-outline {
    padding: 14px 32px;
    border: 2px solid #00eaff;
    color: #00eaff;
    border-radius: 30px;
    text-decoration: none;
}
/* Layout split */
.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

/* RIGHT SIDE MEDIA PANEL */
.hero-media {
    position: relative;
    width: 45%;
    height: 420px;
    perspective: 1200px;
}

/* Images */
.media-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 🔥 Shows full image */
    object-position: center;
    background: transparent;

    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);

    opacity: 0;
    transform: translateY(60px) scale(0.9) rotateY(15deg);
    transition: all 1s ease;
}

/* Visible image */
.media-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0);
}
@media (max-width: 900px) {
    /* 1. Remove large padding and force tight side-by-side */
    .space-hero {
        padding: 10px 5px !important; /* Minimal top/bottom and side padding */
        height: auto;
        min-height: 250px; /* Ensures height doesn't disappear */
    }

    .hero-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: center; 
        justify-content: space-between;
        gap: 10px; /* Minimal gap between heading and image */
        width: 100%;
        margin: 0;
    }

    /* 2. Left Side Heading (Tightened) */
    .hero-content {
        flex: 0 0 58%; /* Increased width slightly */
        padding: 0;
        margin: 0;
    }

    .hero-content h1 {
        font-size: 18px; /* Compact font size */
        line-height: 1.1;
        margin-bottom: 5px;
        text-align: left;
    }

    .hero-content p {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 10px;
        padding: 0;
    }

    /* 3. Buttons (Same as previous style, but smaller) */
    .hero-buttons {
        display: flex;
        flex-direction: column; 
        gap: 5px;
    }

    .hero-btn-primary, .hero-btn-outline {
        padding: 6px 12px;
        font-size: 10px;
        width: fit-content;
    }

    /* 4. Right Side Media (The Popup Image) */
    .hero-media {
        flex: 0 0 38%; /* Fixed width to prevent shrinking */
        height: 150px; /* Reduced height to remove empty space */
        position: relative;
        margin: 0;
    }

    .media-slide {
        width: 100% !important;
        height: 100% !important;
        position: absolute;
        object-fit: contain;
        
        /* Reset for popup visibility */
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8); /* Simple zoom-in popup effect */
        transition: all 0.8s ease;
    }

    .media-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}


    /* --- PAGE LOAD ANIMATION --- */
    @keyframes pageLoadFade {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Apply animation to body */
    body {
        animation: pageLoadFade 1.5s ease-out forwards;

    }
