: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;
    }
}

/* Heading Style Start */
.section-title-line {
  text-align: center;
  font-size: 32px;
  font-weight: bolder;
  color: #020266;
  position: relative;
}

.section-title-line::before,
.section-title-line::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #f57c00;
  top: 50%;
}

.section-title-line::before {
  left: 30%;
}

.section-title-line::after {
  right: 30%;
}
/* Heading Style end */

/* 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 */
}
.about-section p {
    text-align: justify;

}
kbd {
  background: linear-gradient(135deg, #020266, #0a0a8f);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid #1a1aa6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);

}

kbd:hover {
  background: #f57c00; /* your orange theme */
  cursor: pointer;
}
/* 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 START */
.services-section {
  padding: 70px 20px;
  background: #f5f7fb;
  text-align: center;
}

.section-title {
  font-size: 30px;
  color: #020266;
  margin-bottom: 50px;
}

/* GRID - 4 COLUMN */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

/* ICON */
.service-card .icon {
  font-size: 40px;
  color: #f57c00;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  color: #020266;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

/* 🔥 READ MORE BUTTON */
.read-more {
  display: inline-block;
  padding: 10px 20px;
  background: #000033;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  font-weight: bolder;
}

/* BUTTON HOVER */
.read-more:hover {
  background: transparent;
  color: #f57c00;
  border: 2px solid #f57c00;
}

/* 🔥 CARD HOVER EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #020266, #0a0a8f);
  z-index: 0;
  transition: 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

/* CONTENT ABOVE BG */
.service-card * {
  position: relative;
  z-index: 1;
}

/* HOVER COLOR CHANGE */
.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card:hover .icon {
  color: #fff;
  transform: scale(1.1);
}

/* BUTTON ON HOVER CARD */
.service-card:hover .read-more {
  background: #fff;
  color: #020266;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column mobile */
  }
}

/* why-us section start */
/* SECTION */
.why-section {
  padding: 80px 20px;
  background: #f5f7fb;
}

.why-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT SIDE */
.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 32px;
  color: #020266;
  margin-bottom: 20px;
  position: relative;
}

/* underline */
.why-left h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f57c00;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.why-left ul {
  list-style: none;
  padding: 0;
}

.why-left ul li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  padding-left: 5px;
  transition: 0.3s;
}

/* hover effect */
.why-left ul li:hover {
  color: #020266;
  transform: translateX(5px);
}

/* RIGHT SIDE */
.why-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* hover background animation */
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #020266, #0a0a8f);
  transition: 0.4s;
  z-index: 0;
}

.why-card:hover::before {
  height: 100%;
}

/* content above bg */
.why-card * {
  position: relative;
  z-index: 1;
}

.why-card h3 {
  color: #020266;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* BUTTON */
.why-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #f57c00;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

/* hover button */
.why-btn:hover {
  background: #fff;
  color: #020266;
}

/* hover text color */
.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .why-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-left h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* why-us section start */
/* CLIENTS  SECTION START */
.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;
  margin: 9px;
}

/* IMAGE */
.logo img {
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
  padding: 1px;
  border-radius: 7px;
}

/* 🔥 BORDER EFFECT USING BEFORE */
.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  transition: 0.3s ease;
}

/* ✨ HOVER EFFECT */
.logo:hover::before {
  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 {
  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-color: #000033;
  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); }

/* youtube-link */
.youtube-link {
  color: #ccc; /* or your default text color */
  text-decoration: none;
}

.youtube-link i {
  color: #ffc107; /* yellow icon */
}

/* Hover Effect */
.youtube-link:hover {
  color: #E9EBF0; /* keep text same */
}

.youtube-link:hover i {
  color: #E9EBF0; /* change icon to red on hover (optional) */
}

/* Footer default text color */
.footer-link {
  color: #ccc; /* use your footer text color */
  text-decoration: none;
}

/* YouTube icon color */
.footer-link i {
  color: #FF0000; /* YouTube red */
}

/* Hover effect */
.footer-link:hover {
  color: #fff; /* optional hover for text */
}

.footer-link:hover i {
  color: #ff4d4d; /* lighter red on hover */
}

/* Facebook Icon */
/* Common Footer Link */
.footer-link {
  color: #ccc; /* your footer text color */
  text-decoration: none;
  transition: 0.3s;
}

/* Facebook Icon Color */
.footer-link.facebook i {
  color:  #ffc107; /* official Facebook blue */
}

/* Hover Effects */
.footer-link:hover {
  color: #ccc; /* text hover */
}

.footer-link.facebook:hover i {
  color:  #ffc107; /* lighter blue on hover */
}
/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* MODAL BOX */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: slideDown 0.5s ease;
}

/* ANIMATION */
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* FORM */
.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  background: #f57c00;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #ff8f1f;
}
