@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
            --primary-color: #722222; /* Richer, deeper red */
            --primary-light: #a03636; /* Lighter shade for hover/accents */
            --secondary-bg-color: #f4f4f4; /* Softer light gray for sections */
            --light-text-color: #ffffff; /* For text on dark backgrounds */
            --dark-text-color: #333333; /* For general body text */
            --muted-text-color: #6c757d; /* For secondary text */
            --card-shadow: rgba(0, 0, 0, 0.1);
            --card-hover-shadow: rgba(0, 0, 0, 0.2);
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            color: var(--dark-text-color);
            line-height: 1.7;
            background-color: #fcfdff; /* Very light background for overall elegance */
            overflow-x: hidden!important;
        }
        a{
            color: #722222;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
        }
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--primary-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 8px;
}
.navbar-brand {
  color: var(--light-text-color) !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 50px;
  margin-right: 10px;
  border-radius: 5px;
}
.header .logo i {
  font-size: 24px;
  margin-right: 5px;
  color: var(--accent-color);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--light-text-color) !important;
  font-weight: 400;
    padding-right: 1rem;
    padding-left: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    background: var(--primary-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;

  }

 .navmenu ul li.dropdown ul li a {
  font-size: 15px;
  display: block;
  text-transform: none;
  color: var(--light-text-color);
  padding: 10px 20px !important;
}

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: #662626;
            color: var(--light-text-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    color: var(--light-text-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--primary-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--light-text-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

        /* Hero Section */
        .hero-section {
            background-image: url('../images/banner-3.png');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 150px 0; /* More vertical padding */
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55); /* Slightly darker overlay */
            z-index: 1;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1; /* Very subtle effect */
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
        }

        .hero-section h1 {
            font-size: 4.5rem; /* Larger, more impactful heading */
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            line-height: 1.2;
            color: #fff; /* Ensure white text for contrast */
        }

        .hero-section p {
            font-size: 1.8rem; /* Larger paragraph */
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            color: #e0e0e0; /* Off-white for slight distinction */
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0; /* More padding for spacious feel */
            background-color: #ffffff;
        }

        .content-section.bg-light {
            background-color: var(--secondary-bg-color) !important;
        }

        .content-section h2 {
            font-size: 2.8rem; /* Larger section titles */
            margin-bottom: 45px;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .location-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        .location-link:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .image-card {
            margin-bottom: 30px;
            border: none;
            box-shadow: 0 10px 25px var(--card-shadow);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--card-hover-shadow);
        }

        .image-card img {
            width: 100%;
            height: 300px; /* Slightly taller for better visual */
            object-fit: cover;
            border-bottom: 5px solid var(--primary-color); /* A subtle color accent */
        }

        .image-card .card-body {
            padding: 30px;
            text-align: center;
        }

        .image-card .card-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .image-card .card-text {
            color: var(--dark-text-color);
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 14px 35px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 8px;
            transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            color: var(--light-text-color);
        }

        .lead {
            font-size: 1.6rem;
            color: var(--dark-text-color);
            line-height: 1.8;
        }

        .fs-5 { /* Custom class for specific paragraph font size */
            font-size: 1.3rem !important;
            color: var(--dark-text-color);
        }

        /* Partner Logos Section */
        .partner-logos {
            background-color: var(--secondary-bg-color);
            padding: 80px 0;
            text-align: center;
        }

        .partner-logos h2 {
            color: var(--primary-color);
            font-size: 2.8rem;
            margin-bottom: 45px;
            position: relative;
            padding-bottom: 15px;
        }

        .partner-logos h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .partner-logos img {
            max-height: 200px; /* Even larger images */
            width: auto;
            filter: none; /* No grayscale */
            opacity: 1; /* No fading */
            transition: none; /* No transition */
            object-fit: contain;
            padding: 10px; /* Add some padding if logos touch */
        }

        /* Make partner logos more responsive */
        .partner-logos .row > div {
            flex: 0 0 auto;
            width: auto;
            margin-bottom: 20px;
            background: #fff;
            margin: 0px 30px;
        }

        /* Footer Styling */
        .footer {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 60px 0;
            font-size: 0.95rem;
        }

        .footer a {
            color: var(--light-text-color);
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        .footer a:hover {
            color: #ffda6a; /* Goldish hover for elegance */
            text-decoration: underline;
        }

        .footer h5 {
            color: var(--light-text-color);
            margin-bottom: 25px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
        }

        .footer .social-icons a {
            color: var(--light-text-color);
            font-size: 2.2rem; /* Larger social icons */
            margin-right: 25px;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .footer .social-icons a:hover {
            color: #ffc107; /* A vibrant hover color */
            transform: translateY(-3px);
        }

        .footer small {
            display: block;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.25);
            padding-top: 25px;
            line-height: 1.8;
            text-align: center;
            color: rgba(255,255,255,0.85);
        }

        .map-container {
            width: 100%;
            height: 280px; /* Slightly taller map */
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .footer-logo {
            max-width: 140px; /* Larger footer logo */
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }

        .list-unstyled li {
            margin-bottom: 10px;
        }
ul.list-items li
{margin-bottom: 15px}
.portfolio-bio .social-icons
{text-align: center;}
.portfolio-bio .social-icons a
{width: 30px; height: 30px; border-radius: 50%; text-align: center; line-height: 30px; background: #722222; color: #fff; display:inline-block;}
        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .navbar-nav {
                background-color: #440505;
                padding: 15px;
                border-radius: 8px;
                margin-top: 15px;
                box-shadow: 0 5px 15px rgba(0,0,0,.1);
            }
            .nav-link {
                padding: 0.7rem 1rem;
            }
            /* Ensure dropdowns open below for mobile */
            .nav-item.dropdown .dropdown-menu {
                position: static !important;
                float: none;
                width: 100%;
                margin-top: 0;
                border: none;
                box-shadow: none;
                background-color: #440505; /* Lighter background for nested dropdowns on mobile */
            }
            .dropdown-submenu .dropdown-menu {
                left: auto; /* Reset left position */
                margin-left: 25px; /* Indent sub-items */
                border-left: 3px solid var(--primary-light); /* Visual cue for sub-items */
            }
            /* Show submenu on click for mobile */
            .dropdown-submenu > a.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
                display: block !important;
            }
            .hero-section {
                padding: 100px 0;
            }
            .hero-section h1 {
                font-size: 3rem;
            }
            .hero-section p {
                font-size: 1.4rem;
            }
            .content-section h2, .partner-logos h2 {
                font-size: 2.2rem;
            }
            .image-card img {
                height: 250px;
            }
            .partner-logos img {
                max-height: 100px;
                margin: 0 15px;
            }
            .footer h5 {
                font-size: 1.4rem;
            }
            .footer .social-icons a {
                font-size: 1.8rem;
                margin-right: 15px;
            }
        }

        
        .location-section {
      padding: 2rem 0;
    }
    .location-section .col-md-4
    {margin-top: 20px}
    .map-frame {
      border: 0;
      width: 100%;
      height: 200px;
    }
    .btn-custom {
      background-color: #7b2e2e;
      color: #fff!important;
      border-radius: 0;
    }
    .btn-custom:hover {
      background-color: #5a1f1f;
    }
    .contact-divider {
      border-top: 1px solid #ccc;
      margin: 2rem 0;
    }
    .location-info p {
      margin-bottom: 0.25rem;
    }
    .location-info a {
      color: #7b2e2e;
      text-decoration: underline;
    }
    .location-section h5
    {margin-bottom: 15px;}
    .location-section h6
    {margin: 10px 0px;}
    .services-navigation {
}
.btn-block {
  display: block;
  width: 100%;
}
.service-links {
    font-size: 1.1rem;
}

.service-links a {
    text-decoration: underline;
    padding: 0 0.25rem;
    transition: color 0.3s ease;
}

.service-links a:hover {
    color: #0056b3;
    text-decoration: none;
}

.divider {
    color: #6c757d;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .service-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .divider {
        display: none;
    }
    .service-links a {
        padding: 0.5rem;
        display: block;
    }
}
    @media (max-width: 767.98px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1.1rem;
            }
            .content-section, .partner-logos, .footer {
                padding: 40px 0;
            }
            .content-section h2, .partner-logos h2 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .partner-logos img {
                max-height: 80px;
                margin: 0 10px;
            }
            .lead {
                font-size: 1.2rem;
            }
            .fs-5 {
                font-size: 1rem !important;
            }
            .btn-primary-custom {
                font-size: 1rem;
                padding: 10px 25px;
            }
            .location-section {
      padding: 2rem 1rem;
    }
        }

        .legal-card {
      min-height: 230px;
      margin-bottom: 32px;
      border: none;
      box-shadow: 0 0 0 1px #e6e6e6;
      background: #fff;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .legal-card-placeholder {
      background: #fafafa;
      border: 1px dashed #dbdbdb;
      height: 100px;
      margin-bottom: 18px;
      border-radius: 6px;
      width: 100%;
    }
    .legal-card-title {
      font-size: 1.23rem;
      color: #8d2928;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .legal-card-desc {
      font-size: 0.97rem;
      color: #333;
      margin-bottom: 22px;
    }
    .legal-btn {
      background: #8d2928;
      color: #fff;
      width: 92%;
      max-width: 280px;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 3px;
      border: none;
      justify-content: flex-end;
      font-size: 14px;
    }
    .legal-btn:hover {
      background: #722020;
      color: #fff;
    }
    .mt-50 { margin-top: 50px; }
    .alphas li
    {
        list-style: lower-alpha;
    }