:root {
    --deep-blue: #001d3d;
    --navy-dark: #000814;
    --vibrant-orange: #ffc300;
    --accent-orange: #ff6d00;
}

/* General Settings */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Top Bar */
.top-bar { background-color: var(--deep-blue); }
.top-link { color: white; text-decoration: none; transition: 0.3s; font-size: 14px; }
.top-link:hover { color: var(--vibrant-orange); }

/* Navbar */
.navbar { background-color: var(--navy-dark); border-bottom: 2px solid var(--accent-orange); }
.nav-link { color: white !important; font-weight: 500; margin: 0 10px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--vibrant-orange) !important; border-bottom: 2px solid var(--vibrant-orange); }
.dropdown-menu { background: var(--deep-blue); border: 1px solid var(--accent-orange); }
.dropdown-item { color: white; }
.dropdown-item:hover { background: var(--accent-orange); color: white; }



/* Mobile Centering */
@media (max-width: 991px) {
    
    .navbar-toggler { background-color: var(--vibrant-orange); }
}

/* HERO SECTION STYLES */
.carousel-item {
    height: 85vh; /* Standard corporate banner height */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 18, 46, 0.9), rgba(0, 18, 46, 0.2));
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Animations */
.animated-text {
    color: var(--orange-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s both;
}

.animated-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s both 0.2s;
}

.animated-p {
    color: #bdc3c7;
    font-size: 1.2rem;
    margin-bottom: 35px;
    animation: fadeInUp 1s both 0.4s;
}

.hero-btns {
    animation: fadeInUp 1s both 0.6s;
}

/* Custom Buttons */
.btn-orange {
    background-color: var(--orange-accent);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.4s;
    border: 2px solid var(--orange-accent);
}

.btn-orange:hover {
    background: transparent;
    color: var(--orange-accent);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--deep-navy);
}

/* Text Animation Frames */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item { height: 70vh; }
    .animated-title { font-size: 2.2rem; }
    .animated-p { font-size: 1rem; }
    .hero-overlay {
        background: rgba(0, 18, 46, 0.7); /* Darker on mobile for better readability */
        text-align: center;
    }
}

/* ABOUT SECTION STYLES */
/* ==========================================================================
   SHORT INTRO / ABOUT SECTION STYLES
   ========================================================================== */
:root {
    --deep-navy: #00122e; /* Your Logo Dark Blue */
    --orange-accent: #ff6d00; /* Your Logo Orange */
    --white: #ffffff;
}

.about-section {
    background-color: var(--white);
    overflow: visible; /* Allows the badge to float outside the container bounds */
}

/* Color & Type Utilities */
.text-navy { color: var(--deep-navy); }
.text-orange { color: var(--orange-accent); }
.fs-7 { font-size: 0.85rem; } /* Custom utility for smaller tagline */

/* LEFT SIDE: Image Container & Frames
   ========================================================================== */
.about-img-container {
    position: relative;
    padding-top: 30px; /* Space for the orange border to peek over the top */
    padding-left: 30px; /* Space for the orange border to peek over the left */
}

/* The Orange Border Frame (Back Layer)
   This uses an absolute pseudo-element behind the image. */
.about-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 103%; /* Defines the border's width relative to the container */
    height: 107%; /* Defines the border's height relative to the container */
    border: 8px solid var(--orange-accent);
    z-index: 1; /* Lowest layering position */
    border-radius: 10px;
}

/* The Main Image (Front Layer)
   The container has `z-index: 10` to lift the whole image/frame unit,
   while the `::before` element is `z-index: 1`.
   Bootstrap's `.img-fluid` will handle the actual width of the image. */
.about-img-container img {
    position: relative;
    z-index: 10; /* Lifts image in front of the orange border */
    transition: transform 0.5s ease-in-out;
}

/* Stylist Hover Effect: Image lifts and enlarges slightly */
.about-img-container:hover img {
    transform: scale(1.02);
}

/* Experience Badge
   This element uses `position: absolute` relative to the *whole* container,
   meaning it can overlap both the frame and the image, and even float
   outside the normal bounds. */
.experience-badge {
    position: absolute;
    bottom: -15px; /* Offset below the bottom of the section container */
    right: 15px; /* Offset inward from the right edge */
    background: var(--orange-accent);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 100; /* Highest layer position, above image and text */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow for floating look */
    animation: pulse 2.5s infinite ease-in-out;
}

.experience-badge h3 { font-weight: 800; margin: 0; }
.experience-badge p { margin: 0; font-size: 11px; text-transform: uppercase; font-weight: 600; }


/* RIGHT SIDE: Text Content & Features
   ========================================================================== */

/* Corporate Stylist Icon Feature Boxes */
.about-feature-box {
    display: flex;
    align-items: center;
    padding: 18px;
    background: #f8f9fa; /* Light gray background */
    border-radius: 8px;
    border-left: 4px solid var(--deep-navy); /* Bold navy line on the left */
    transition: all 0.3s ease;
}

/* Corporate Hover Effect: Lift, slide, and color shift */
.about-feature-box:hover {
    background: var(--deep-navy);
    color: var(--white);
    transform: translateX(10px) translateY(-3px);
    border-left-color: var(--orange-accent); /* Line turns orange on hover */
    box-shadow: 0 5px 15px rgba(0, 18, 46, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--orange-accent); /* Icon is orange initially */
    margin-right: 18px;
    transition: 0.3s;
}

/* When parent box is hovered, icon turns white */
.about-feature-box:hover .feature-icon {
    color: var(--white);
}

.about-feature-box h6 {
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Standardized Section Header Underline Utility */
.section-header h2 {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
    transition: width 0.4s;
}

.section-header:hover h2::after {
    width: 120px;
}


/* Custom Long Navy Button */
.btn-navy-long {
    background: var(--deep-navy);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.4s;
    border: 2px solid var(--deep-navy);
    display: inline-flex;
    align-items: center;
}

.btn-navy-long:hover {
    background: transparent;
    color: var(--deep-navy);
}

/* KEYFRAMES
   ========================================================================== */
/* Experience Badge Subtle Pulse */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
}

/* ==========================================================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991px) {
    /* Stack layout */
    .about-img-container {
        margin-bottom: 50px; /* Space between the image badge and the text below it */
        max-width: 90%; /* Keeps container smaller for frame effect */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* On mobile, disable the background frame effect as it can look messy on small screens */
    .about-img-container::before {
        display: none;
    }
    
    /* Adjust text padding */
    .about-section .ps-lg-5 {
        padding-left: 15px !important; /* Forces normal padding on mobile */
    }
    
    /* Adjust header sizing */
    .section-header h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .experience-badge { padding: 15px; }
    .experience-badge h3 { font-size: 1.5rem; }
    .experience-badge p { font-size: 10px; }
}
/* SERVICES SECTION STYLES */
:root {
    --deep-navy: #00122e;
    --orange-accent: #ff6d00;
    --white: #ffffff;
}

.services-section {
    position: relative;
    background-color: #f8f9fa;
}

/* Service Card Base */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border: 1px solid #eef0f2;
    height: 100%;
    position: relative;
    z-index: 1; /* Ensures text is above background fill */
    overflow: hidden;
}

/* Navy Fill from Top to Bottom */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--deep-navy);
    z-index: -1; 
    transition: all 0.4s ease-in-out;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 18, 46, 0.2);
}

/* ICON LOGIC */
.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

/* Normal State: Gradient Icon */
.icon-gradient {
    background: linear-gradient(45deg, #ff6d00, #ffc300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
}

/* HOVER STATE FIX: Remove gradient, show solid white */
.service-card:hover .icon-gradient {
    background: none; /* Disables the gradient background */
    -webkit-background-clip: initial; 
    background-clip: initial;
    -webkit-text-fill-color: var(--white);
    color: var(--white); /* Forces the icon to be solid white */
    transform: scale(1.1) rotateY(360deg);
}

/* TEXT LOGIC */
.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--deep-navy);
    transition: 0.3s;
}

.service-card p {
    font-size: 0.95rem;
    color: #6c757d;
    transition: 0.3s;
}

/* Turn text white on hover */
.service-card:hover h4, 
.service-card:hover p {
    color: var(--white) !important;
}

/* LINK LOGIC */
.service-link {
    text-decoration: none;
    color: var(--orange-accent);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}

.service-card:hover .service-link {
    color: var(--white);
}

/* Bottom Orange Line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-accent);
    transition: 0.4s;
}

.service-card:hover::after {
    width: 100%;
}

/* CLIENTS  SECTION */
.clients-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #020266;
  margin-bottom: 40px;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  width: calc(200px * 12); /* 6 original + 6 duplicate */
  animation: scroll 20s linear infinite;
}

/* EACH LOGO */
/* LOGO BOX */
.logo {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* IMAGE */
.logo img {
  width: 140px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

/* 🔥 BORDER EFFECT USING BEFORE */
.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

/* ✨ HOVER EFFECT */
.logo:hover::before {
  border: 2px solid #f57c00; /* orange border */
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.4);
}

.logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.logo:hover::before {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(45deg, #f57c00, #020266) border-box;
}

/* 🔥 KEY FIX: Move EXACT HALF */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SHOW EXACTLY 6 LOGOS */
.logo-slider {
  max-width: 1200px; /* 200px × 6 */
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .logo {
    width: 160px;
  }
  .logo-slider {
    max-width: 960px; /* 6 logos */
  }
}

@media (max-width: 768px) {
  .logo {
    width: 140px;
  }
  .logo-slider {
    max-width: 840px;
  }
}

.logo-track:hover {
  animation-play-state: paused;
}

/* ===== TSTIMONIALS SECTION ===== */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  color: #020266;
  margin-bottom: 40px;
}

/* ===== SLIDER ===== */
.testimonial-container {
  max-width: 950px;
  margin: auto;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each slide */
.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
}

/* ===== CARD ===== */
.testimonial-card {
  width: 50%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 3px solid #f57c00;
}

.client-name {
  font-weight: 600;
  color: #020266;
}

.client-role {
  font-size: 13px;
  color: #777;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ===== DOTS ===== */
.testimonial-dots {
  margin-top: 25px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #f57c00;
  transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .testimonial-slide {
    flex-direction: column;
  }

  .testimonial-card {
    width: 100%;
  }
}



/* CALL TO ACTION STYLES */
/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #020266, #0a0a8f);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

/* Heading */
.cta-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Text */
.cta-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Primary Button */
.primary-btn {
  background: #f57c00;
  color: #fff;
}

.primary-btn:hover {
  background: #ff8f1f;
  transform: translateY(-2px);
}

/* Secondary Button */
.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #020266;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }
}

/* Footer */
.main-footer { background-color: var(--navy-dark); color: white; }
.footer-heading { 
    color: var(--vibrant-orange); 
    padding-bottom: 10px; 
    position: relative; 
    display: inline-block;
}
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: 0; 
    width: 50px; height: 2px; background: var(--accent-orange); 
    transition: 0.4s;
}
.footer-heading:hover::after { width: 100%; }

.footer-links li a { color: #ccc; text-decoration: none; transition: 0.3s; display: block; padding: 5px 0; }
.footer-links li a:hover { color: var(--vibrant-orange); padding-left: 10px; }

/* Social Icons */
.social-icons a { 
    color: white; background: var(--deep-blue); 
    width: 35px; height: 35px; display: inline-flex; 
    align-items: center; justify-content: center; 
    border-radius: 5px; margin-right: 10px; transition: 0.4s;
}
.social-icons a:hover { background: var(--accent-orange); transform: translateY(-5px); }

/* Category Boxes */
.category-box {
    border: 1px solid #333; padding: 10px 20px; 
    border-radius: 5px; transition: 0.4s; cursor: pointer;
}
.category-box:hover { 
    border-color: var(--vibrant-orange); 
    color: var(--vibrant-orange); 
    box-shadow: 0 0 10px rgba(255, 195, 0, 0.3);
}

/* Copyright Section */
.copyright-row { background-color: #000; font-size: 14px; color: #888; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px; background: var(--accent-orange);
    color: white; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    text-decoration: none; transition: 0.4s; z-index: 1000;
}
.back-to-top:hover { background: white; color: var(--accent-orange); transform: scale(1.1); }