/* =========================
   RESET & VARIABLES
========================= */

/* Reset default browser styles and set global font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* CSS Variables for easy theming */
:root {
    --primary: #e60023;        /* Main red color */
    --dark: #111;               /* Dark text/background */
    --light: #fff;              /* White color */
    --muted: #888;              /* Muted/gray text */
    --shadow: rgba(0,0,0,0.15); /* Box shadows */
    --gold: #FFD700; /* real gold color */
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.4);
    transition: 0.35s ease;
    z-index: 1000;
}

/* Navbar after scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px var(--shadow);
}

/* Container inside navbar */
.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Logo */
.nav-logo a {
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--dark);
}

/* Navbar links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Navbar button */
.nav-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--light) !important;
    border-radius: 8px;
    transition: 0.25s ease;
}

.nav-btn:hover {
    background: #c4001f;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.drop-btn {
    cursor: pointer;
}

.drop-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: var(--light);
    display: flex;
    flex-direction: column;
    width: 180px;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 6px 18px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 500;
}

.dropdown:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu li {
    padding: 10px 20px;
}

.drop-menu li a:hover {
    color: var(--primary);
}

/* Mobile menu toggle */
.nav-toggle {
    width: 32px;
    height: 23px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    height: 4px;
    width: 100%;
    background: var(--dark);
    border-radius: 10px;
    transition: 0.4s ease;
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile responsive navbar */
@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        box-shadow: -4px 0 18px var(--shadow);
        transition: 0.35s ease;
    }

    .nav-links.show {
        right: 0;
    }

    /* Mobile dropdown adjustments */
    .drop-menu {
        position: relative;
        box-shadow: none;
        background: none;
        margin-left: 10px;
    }

    .dropdown:hover .drop-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* =========================  Footer ======================== */
/* Custom Hero-style Footer */
.custom-footer {
    background-color: #e60000; /* red background */
    color: #ffffff; /* white text */
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Faint white spots overlay */
.custom-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

/* Container for cards */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; /* above spots */
    z-index: 1;
    justify-content: space-between;
}

/* Individual card style */
.footer-card {
    background-color: rgba(0,0,0,0.15); /* pale dark card */
    flex: 1;
    min-width: 250px;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-card p, .footer-card a {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-card a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-card input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
}

.footer-card button {
    background-color: #ffffff;
    color: #ff3939;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.footer-card button:hover {
    background-color: rgba(255,255,255,0.8);
}

.social-links {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
    color: #ffffff;
    font-weight: bold;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================
   HERO SECTION
========================= */
/* ============================
   HERO SECTION – WASUDANI STYLE
=============================== */

/* ============================
   HERO SECTION — CLEAN WHITE + RED CTA
=============================== */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;

    /* KEEP BACKGROUND IMAGE ONLY */
    background: url('../images/2.jpg') center/cover no-repeat;

    color: #ffffff; /* all text white */
    animation: heroFade 1.2s ease-out forwards;
}

/* Smooth fade-in animation */
@keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
    color: #ffffff; /* white */
}

/* Subtitle paragraph */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push content to bottom */
    align-items: center;       /* center horizontally */
    height: 100vh;             /* full viewport height */
    padding-bottom: 8%;        /* slightly above bottom */
    text-align: center;
}



/* CTA Button — RED */
.cta-button {
    background-color: #e60000; /* red */
    color: #ffffff; /* white text */
    padding: 0.9rem 2.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;

    border: none;
    border-radius: 4px;
    cursor: pointer;

    transition: 0.3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    background-color: #cc0000; /* darker red */
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}


/* =========================  Expertise Section =========================*/
.expertise-section {
    padding: 5rem 0;
    animation: fadeUp 1.2s ease-out forwards;
    opacity: 0;
}

/* Fade animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid */
.expertise-grid {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

/* Expertise Card */
.expertise-card {
    background: #e9e9e9;          /* NEW: flat luxury grey */
    width: 360px;
    padding: 2.5rem;

    border-left: 6px solid var(--gold);  /* GOLD left border */
    border-radius: 0;              /* NEW: no rounded corners */

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Soft gold glow */
.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 215, 0, 0.09),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: 0.35s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

/* Hover movement */
.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Title */
.expertise-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 1.3rem;
}

/* Text */
.expertise-card p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #222;
}



/* ========================= Interactive Cards =========================*/
/* Hero Section with Interactive Cards */ 
.interactive-section {
  background-color: #f5f5f5; /* Grey background */
  text-align: center;
  padding: 6rem 0;
  color: #333;
}

.interactive-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  position: relative;
  width: 420px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #e53935; /* Red cards */
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #fff; /* White text for contrast */
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-content {
  text-align: center;
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Hero heading */
.interactive-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333; /* Dark heading for grey background */
}




/* =========================
   FEATURES SECTION
========================= */

.features {
    padding: 70px 40px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Feature Box */
.feature-box {
    padding: 35px;
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--shadow);
    transition: 0.3s ease;

    /* Uniform height */
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Bigger, bolder headings */
.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;     /* bold */
    color: var(--primary);
    margin-bottom: 12px;
}

/* Bigger description text */
.feature-box p {
    font-size: 1.05rem;
    font-weight: 500;     /* semi-bold */
    color: var(--muted);
    line-height: 1.55;
}


.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px var(--shadow);
}

/* =========================
   FOOTER
========================= */

.footer {
    margin-top: 80px;
    padding: 25px;
    text-align: center;
    background: var(--dark);
    color: var(--light);
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
    text-align: center;
    padding: 100px 20px 60px;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark);
}

.page-header p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--muted);
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    padding: 40px;
}

.service-box {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px var(--shadow);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px var(--shadow);
}

.service-box h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.service-box p {
    margin-bottom: 20px;
    color: var(--muted);
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact info box */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #374151;
}

/* Contact form */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #fdfdfd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e60023;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }
}


/* =====================IMAGES MODAL================================== */
h1 {
  text-align: center;
  padding: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  width: calc(25% - 20px);
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.1);
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Modal content (image) */
.modal-content {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  overflow: hidden;
  animation: zoomIn 0.5s;
}

@keyframes zoomIn {
  from {transform: scale(0.6);}
  to {transform: scale(1);}
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Caption of modal image */
.caption {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .gallery-item {
     width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .gallery-item  {
    width: calc(100% - 20px);
  }
}

