/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COLORS */
:root {
    --primary: #e91e63;
    --secondary: #9c27b0;
    --accent: #2196f3;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --transition: all 0.3s ease;
}

/* BODY */
body {
    font-family: "Poppins", sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

   /* Top Header */
        .top-header {
            background-color: #E91E63;
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
        }

        .top-header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info i {
            color: #4fc3f7;
            margin-right: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            color: #4fc3f7;
        }

        /* Main Header */
        .main-header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a365d;
            text-decoration: none;
        }

        .logo span {
            color: #4fc3f7;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-item {
            position: static;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            padding: 25px 0;
            display: flex;
            align-items: center;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: #1a365d;
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        /* Full-Width Mega Menu */
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 100vw;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px 0;
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mega-menu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-column h4 {
            color: #1a365d;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #4fc3f7;
            font-size: 1.1rem;
        }

        .mega-menu-links {
            list-style: none;
        }

        .mega-menu-links li {
            margin-bottom: 10px;
        }

        .mega-menu-links a {
            text-decoration: none;
            color: #555;
            transition: color 0.3s, padding-left 0.3s;
            display: block;
        }

        .mega-menu-links a:hover {
            color: #1a365d;
            padding-left: 5px;
        }

        .mega-menu-column.featured {
            grid-column: span 2;
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-content h3 {
            color: #1a365d;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .featured-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .featured-btn {
            display: inline-block;
            background-color: #4fc3f7;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .featured-btn:hover {
            background-color: #1a365d;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a365d;
            z-index: 1001;
            background: none;
            border: none;
            padding: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .mega-menu-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 992px) {
            .mega-menu-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .mega-menu-column.featured {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                padding: 100px 20px 30px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                overflow-x: hidden;
            }

            .nav-menu.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid #eee;
                font-size: 1.1rem;
            }

            .mega-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 20px 0 10px;
                display: none;
                background-color: #f9f9f9;
                margin-top: 10px;
                border-radius: 8px;
                height: auto;
                overflow-y: visible;
            }

            .mega-menu-container {
                display: block;
                padding: 0;
            }

            .mega-menu-column {
                margin-bottom: 20px;
            }

            .mega-menu-column.featured {
                grid-column: 1;
            }

            .nav-item.active .mega-menu {
                display: block;
            }

            .top-header-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .top-header {
                padding: 10px 0;
            }
        }


/* Make only the main header sticky */
/* .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
} */

/* Keep top header normal (not sticky) */
/* .top-header {
    position: relative;
    z-index: 1001;
} */

/* Adjust mobile menu position */
@media (max-width: 768px) {
    .nav-menu {
        top: 70px; /* Height of main header */
        height: calc(100vh - 70px); /* Subtract main header height */
    }

    /* When mobile menu is open, make main header stay at top */
    .nav-menu.active {
        top: 70px;
    }
}
        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            /* visibility: visible; */
        }

        @media (max-width: 768px) {
            .nav-menu {
                transform: translateX(-100%);
            }

            .nav-menu.active {
                transform: translateX(0);
            }
        }
    /* HERO SECTION */
   .hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.slide.active {
  display: flex;
}

/* Slide image */
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

/* Text on top */
.hero-content {
  position: absolute;
  text-align: center;
  max-width: 900px;
  color: white;
  z-index: 2;
  padding: 0 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h1 span {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #fff;
}

/* Button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background: var(--primary);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
}



    /* SECTIONS */
   /* Section base */
section {
  padding: 10px ;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  color: var(--text-dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

/* Zoom on hover */
.category-card:hover img {
  transform: scale(1.12);
}

/* Dark bar at bottom like screenshot */
.title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Play button in center */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  color: var(--primary);
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.category-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
/* Tablet (768px – 1024px): 2 per row */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (Below 768px): 1 per row */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
/* ABOUT SECTION STYLE 3 */
.about-style-3 {
  position: relative;
  padding: 140px 0;
  background: url("http://localhost/hodunshow/uploads/image/instrumental-trio-or-quartet-4.jpeg") center/cover fixed;
  font-family: "Inter", sans-serif;
}

.about-style-3 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-style-3 .about-box {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.about-style-3 .about-details {
  flex: 1;
  min-width: 300px;
}

.about-style-3 .about-photo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-style-3 .about-photo img {
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-style-3 .about-details h2 {
  font-size: 3rem;
}

.about-style-3 .about-details h2 span {
  background: linear-gradient(45deg,#ff6f91,#c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-style-3 .about-details p {
  font-size: 1.1rem;
  margin-top: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-style-3 .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-style-3 .about-photo {
    justify-content: center;
  }

  .about-style-3 .about-photo img {
    width: 100%;
    max-width: 400px;
  }

  .about-style-3 .about-details h2 {
    font-size: 2.2rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .about-style-3 .about-photo img { width: 100%; }
  .about-style-3 .about-details h2 { font-size: 2.2rem; }
}


/* talent */

.talent-section {
    width: 90%;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    margin-top: 40px;
}

/* Main Grid */
.talent-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    column-gap: 20px;
    row-gap: 20px;
}

/* Big Image */
.big-image img,
.small-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.4s ease-in-out;
}

/* Hover Zoom Effect */
.big-image:hover img,
.small-box:hover img {
    transform: scale(1.08);
    filter: brightness(80%);
}

/* Small Grid (Right Side) */
.small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .talent-grid {
        grid-template-columns: 1fr;
    }
}
.btn-explore {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;   /* REMOVE UNDERLINE */
    text-align: center;
}

.btn-explore:hover {
    opacity: 0.9;
}

    /* SERVICES */
    /* FULL BACKGROUND IMAGE */
.services-section {
    position: relative;
    padding: 70px 40px;
    background-image: url('http://localhost/hodunshow/uploads/image/sand_fire_show_07.jpg'); /* put your bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 40px;
}

/* DARK OVERLAY */
.services-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 35px;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.section-title1 {
    text-align: center;
    font-size: 35px;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}
/* GRID */
.services-grid {
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 2;
}

/* CARDS */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.service-card:hover img {
    transform: scale(1.06);
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    margin: 15px 15px 5px;
    color: #333;
}

.service-card p {
    margin: 0 15px 20px;
    color: #666;
    font-size: 14px;
}

/* EXPLORE BUTTON */
.btn-explore {
    display: block;
    width: 120px;
    margin: 10px auto 20px;
    padding: 8px 0;
    background: #ff6501;
    color: white;
    text-align: center;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-explore:hover {
    background: #e75a00;
}
.services-grid {
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 2;
}

/* Desktop - 4 cards */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet - 2 cards */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 card */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION BACKGROUND */
.more-services-section {
    position: relative;
    padding: 80px 40px;
    background-image: url('http://localhost/hodunshow/uploads/image/sand_fire_show_07.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* OVERLAY */
.more-services-section .ms-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* HEADINGS */
.ms-title {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.ms-subtitle {
    text-align: center;
    color: #f1f1f1;
    font-size: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* GRID */
.ms-grid {
    display: grid;
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* DESKTOP = 4 ITEMS */
@media (min-width: 1100px) {
    .ms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* TABLET = 2 ITEMS */
@media (min-width: 768px) and (max-width: 1099px) {
    .ms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE = 1 ITEM */
@media (max-width: 767px) {
    .ms-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD DESIGN */
.ms-card {
    background: rgba(255,255,255,0.9);
    padding: 18px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    backdrop-filter: blur(5px);
}

/* IMAGE */
.ms-card img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.ms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

.ms-card:hover img {
    transform: scale(1.06);
}

/* TEXT */
.ms-card h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #222;
    font-weight: 600;
}

.ms-card p {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

    /* CLIENTS */
    .clients {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 60px;
    }

    .clients img {
      width: 160px;
      opacity: 0.7;
      transition: var(--transition);
      filter: grayscale(1);
    }

    .clients img:hover {
      opacity: 1;
      filter: grayscale(0);
      transform: translateY(-5px);
    }

    /* TESTIMONIALS */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .testimonial {
      background: var(--card-bg);
      padding: 30px;
      border-radius: 18px;
      border: 1px solid var(--border);
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .testimonial:before {
      content: '""';
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 4rem;
      color: var(--primary);
      opacity: 0.2;
      font-family: serif;
    }

    .testimonial p {
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
    }

    .testimonial h4 {
      color: var(--primary);
      position: relative;
      z-index: 2;
    }

    /* CONTACT */
    .contact-box {
      max-width: 800px;
      margin: auto;
      background: var(--card-bg);
      padding: 40px;
      border-radius: 18px;
      border: 1px solid var(--border);
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-box:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      border-top-left-radius: 18px;
      border-top-right-radius: 18px;
    }

    .contact-box input, .contact-box textarea {
      width: 100%;
      padding: 16px;
      margin-top: 20px;
      border: none;
      background: var(--light-bg);
      color: var(--text-dark);
      border-radius: 12px;
      transition: var(--transition);
      border: 1px solid var(--border);
    }

    .contact-box input:focus, .contact-box textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
    }

    .contact-box button {
      margin-top: 25px;
      padding: 16px 40px;
      background: var(--primary);
      border: none;
      border-radius: 40px;
      font-size: 1.2rem;
      color: white;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    }

    .contact-box button:hover {
      background: #d10055;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    }
/* CONTACT SECTION WITH BACKGROUND IMAGE */
#contact {
  padding: 80px 7%;
  background: url("http://localhost/hodunshow/uploads/image/5 (1).jpg") center/cover no-repeat fixed;
  position: relative;

}

/* Dark overlay */
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust opacity */
  z-index: 1;
}

/* Ensure text & form appear above overlay */
#contact > * {
  position: relative;
  z-index: 2;
}

/* Title & Subtitle White Color for contrast */
#contact .section-title {
  color: #fff;
}

#contact .section-subtitle {
  color: #e5e5e5;
}

/* CONTACT BOX (your existing styling) */
.contact-box {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

    /* FOOTER */
.main-footer {
  background: #000;
  color: #fff;
  padding: 60px 30px;
  margin-top: 70px;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-top: 10px;
}

/* SERVICES LIST */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ea1c5b; /* pink highlight */
}

/* CONTACT INFO */
.footer-address {
  color: #bbb;
  margin-top: 15px;
  line-height: 1.6;
}

/* COPYRIGHT */
.footer-copy {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }

  .social-icons {
    margin-top: 10px;
  }
}







@media (max-width: 768px) {
  .about-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin-left: 0;
    display: block;
    margin: 0 auto;   /* centers it */
  }
}
