:root {
  --primary: #2a5c8a;
  --secondary: #f9a826;
  --dark: #1a365d;
  --light: #f8f9fa;
  --accent: #38b2ac;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  overflow-x: hidden;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Navbar Start Here */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.4s ease;
}

.navbar {
  height: 120px;
  padding: 0 !important;
}
.navbar-brand img {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Mobile Size */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 120px;
  }
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

/* FIXED: Smaller Logo */
.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.navbar-brand i {
  color: var(--secondary);
  margin-right: 9px;
  font-size: 25px;
}

/* FIXED: Navbar container with proper spacing */
.navbar > .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.navbar-nav {
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
}

/* FIXED: Nav items spacing for laptop */
.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  font-weight: 600;
  margin: 0 3px;
  color: var(--dark) !important;
  transition: all 0.3s;
  padding: 8px 8px !important;
  position: relative;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

/* Main navigation links underline effect */
.navbar-nav > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary);
  left: 50%;
  bottom: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar-nav > .nav-item > .nav-link:hover::after {
  width: 80%;
}

/* Dropdown Toggle Styles */
.dropdown-toggle::after {
  display: none !important;
}

/* Custom dropdown arrow using Font Awesome */
.dropdown-toggle .fa-chevron-down {
  margin-left: 4px;
  font-size: 10px;
  transition: transform 0.3s;
}

.dropdown.show .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mega Menu for Doors Dropdown */
.doors-mega-menu {
  width: 600px !important;
  padding: 25px !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.doors-mega-menu .row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}

.doors-mega-menu .col-md-6 {
  padding: 0 15px;
  width: 50%;
}

.doors-mega-menu h6 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
  font-size: 1.1rem;
}

.doors-mega-menu .dropdown-item {
  padding: 10px 0;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  width: 100%;
}

.doors-mega-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary);
  border-left-color: var(--secondary);
  padding-left: 10px;
}

.doors-mega-menu .dropdown-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Desktop dropdown hover effect */
@media (min-width: 992px) {
  .navbar-nav > .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    display: none;
    margin-top: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    animation: dropdownFade 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 220px;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }

  /* Get Started button spacing */
  .navbar-nav .btn-primary-custom {
    margin-left: 15px !important;
    white-space: nowrap;
    padding: 12px 25px !important;
    font-size: 0.9rem;
  }
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 12px 25px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s;
  position: relative;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: rgba(42, 92, 138, 0.05);
  color: var(--primary);
  border-left-color: var(--secondary);
  padding-left: 35px;
}

.dropdown-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Enhanced Mobile Menu Toggler */
.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  outline: none !important;
  box-shadow: none !important;
  order: 3;
  z-index: 1100;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon-custom {
  display: block;
  width: 25px;
  height: 20px;
  position: relative;
  margin: 0 auto;
}

.navbar-toggler-icon-custom span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon-custom span:nth-child(1) {
  top: 0;
}

.navbar-toggler-icon-custom span:nth-child(2) {
  top: 8px;
  width: 20px;
}

.navbar-toggler-icon-custom span:nth-child(3) {
  top: 16px;
}

/* Animated X when active */
.navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon-custom
  span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  width: 25px;
}

.navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon-custom
  span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon-custom
  span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
  width: 25px;
}

/* Mobile menu dropdowns */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    padding: 80px 25px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050;
    overflow-y: auto;
    order: 4;
    flex-basis: 100%;
    margin-top: 15px;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
  }

  .nav-item {
    margin-bottom: 10px;
    width: 100%;
  }

  .nav-link {
    padding: 15px 20px !important;
    border-radius: 8px;
    margin: 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(42, 92, 138, 0.03);
    font-size: 1rem;
  }

  .navbar-nav > .nav-item > .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(42, 92, 138, 0.08);
  }

  .doors-mega-menu {
    width: 100% !important;
    padding: 15px !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    animation: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
    border-radius: 8px;
  }

  .doors-mega-menu .row {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .doors-mega-menu .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .doors-mega-menu .col-md-6:last-child {
    margin-bottom: 0;
  }

  .doors-mega-menu h6 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Dropdown menu styling for mobile */
  .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 5px 0 10px !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    animation: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 5px 0;
    display: none;
  }

  .dropdown.show .dropdown-menu {
    display: block !important;
  }

  .dropdown-item {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  /* Mobile dropdown items */
  .dropdown-item {
    padding-left: 35px;
  }

  /* Get Started button in mobile */
  .navbar-nav .btn-primary-custom {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 24px !important;
    font-size: 1rem;
  }

  /* Ensure navbar items are in proper order */
  .navbar > .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 15px;
  }

  .navbar-brand {
    font-size: 22px; 
  }

  .navbar-brand i {
    font-size: 22px;
  }

  .navbar-toggler {
    margin-left: 10px;
    
  }
}

/* FIXED: Desktop - BIGGER SIZE FOR LAPTOP with better spacing */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    justify-content: flex-end;
  }

  .navbar-nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
  }

  /* FIXED: Better spacing and bigger font for laptop */
  .nav-item {
    margin-left: 0;
  }

  .nav-link {
    font-size: 1rem !important;
    padding: 12px 15px !important; 
    font-weight: 600;
  }

  /* FIXED: Get Started button alignment - BIGGER */
  .navbar-nav .btn-primary-custom {
    margin-left: 15px;
    white-space: nowrap;
    padding: 12px 30px !important; 
    font-size: 1rem !important; 
    font-weight: 600;
  }

  /* FIXED: Doors mega menu bigger */
  .doors-mega-menu {
    width: 700px !important;
    padding: 30px !important;
  }

  .doors-mega-menu h6 {
    font-size: 1.2rem;
  }

  .doors-mega-menu .dropdown-item {
    font-size: 1rem;
    padding: 12px 0;
  }

  /* FIXED: Logo spacing */
  .navbar-brand {
    margin-right: 30px;
  }
}

/* FIXED: For medium laptops (1200px - 1400px) */
@media (max-width: 1400px) and (min-width: 992px) {
  .nav-link {
    font-size: 0.95rem !important;
    padding: 10px 12px !important;
  }

  .navbar-brand {
    font-size: 21px;
  }

  .navbar-nav .btn-primary-custom {
    padding: 11px 25px !important;
    font-size: 0.95rem !important;
    margin-left: 12px !important;
  }

  .doors-mega-menu {
    width: 650px !important;
  }
}

/* FIXED: For smaller laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .nav-link {
    font-size: 0.9rem !important;
    padding: 10px 10px !important;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .navbar-nav .btn-primary-custom {
    padding: 10px 22px !important;
    font-size: 0.9rem !important;
    margin-left: 10px !important;
  }

  .doors-mega-menu {
    width: 600px !important;
    padding: 25px !important;
  }
}

/* FIXED: For extra large screens */
@media (min-width: 1400px) {
  .nav-link {
    font-size: 1.05rem !important;
    padding: 14px 18px !important;
  }

  .navbar-nav .btn-primary-custom {
    padding: 14px 35px !important;
    font-size: 1.05rem !important;
    margin-left: 20px !important;
  }

  .navbar-brand {
    font-size: 24px; 
  }

  .doors-mega-menu {
    width: 750px !important;
  }
}

/* FIXED: Prevent text wrapping in navbar */
.navbar-nav .nav-item {
  white-space: nowrap;
}

/* Hero Section with Video Background */
.hero {
  position: relative;
  color: white;
  padding: 180px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -80px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 54, 93, 0.67), rgba(42, 92, 138, 0.3));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.btn-primary-custom {
  background-color: var(--secondary);
  border: none;
  color: white;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom:hover {
  background-color: #e5971d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 168, 38, 0.4);
  color: white;
}

/* About Sections Styling */

/* About Cards */
.about-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width : 768px) {
  .about-subtitle ,
  .whatdo-subtitle {
    text-align: center;
  }
}

/* Section Header */
.section-header {
    position: relative;
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 15px !important;
    padding-bottom: 0;
    color: var(--dark);
    font-size: 1.8rem;
    display: inline-block;
}

/* Subtitles - Center aligned for both desktop and mobile */
.about-subtitle,
.whatdo-subtitle,
.promise-subtitle {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    /* text-align: center; */
    width: 100%;
    display: block;
}

/* Mission Highlight */
.mission-highlight {
    background: rgba(42, 92, 138, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    padding: 20px;
}

.mission-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mission-icon {
    color: var(--secondary);
    font-size: 24px;
    min-width: 24px;
    margin-top: 2px;
}

.mission-text {
    flex: 1;
}

.mission-text p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats Container */
.stats-container {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Services Overview */
.services-overview {
    margin-top: 30px;
}

.service-highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.service-highlight:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.service-text {
    flex: 1;
}

.service-text h5 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
  .service-textpara p {
    font-size: 14px;
    text-align: justify;
  }
}

/* Promise Section */
.promise-section {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--secondary);
}

.promise-card {
    background: #f9fafc;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-align: center;
}

.promise-card:hover {
    border-left-color: var(--secondary);
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.promise-content h5 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.promise-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-card {
        padding: 30px;
    }
    
    .promise-section {
        padding: 30px;
    }
    
    .promise-card {
        padding: 20px;
    }
    
    .about-subtitle,
    .whatdo-subtitle,
    .promise-subtitle {
        font-size: 1rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .about-card {
        padding: 25px;
    }
    
    .promise-section {
        padding: 25px 20px;
    }
    
    .about-subtitle,
    .whatdo-subtitle,
    .promise-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Mission Highlight - Mobile */
    .mission-highlight {
        padding: 15px;
        border-left-width: 3px;
    }
    
    .mission-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .mission-icon {
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    /* Service Highlights - Mobile */
    .service-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .service-icon-small {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-text h5 {
        font-size: 1rem;
    }
    
    .service-text p {
        font-size: 0.9rem;
    }
    
    /* Promise Cards - Mobile */
    .promise-card {
        padding: 20px 15px;
        text-align: center;
    }
    
    .promise-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .promise-content h5 {
        font-size: 1rem;
    }
    
    .promise-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-card {
        padding: 20px 15px;
    }
    
    .promise-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-subtitle,
    .whatdo-subtitle,
    .promise-subtitle {
        font-size: 0.9rem;
    }
}

/* Why Trust Us Section Styles */
.trust-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.trust-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 24px;
}

.trust-content h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-content p {
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Us Section Styles */
.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(42, 92, 138, 0.05);
}

.feature-check {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
}

.feature-text h5 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Why Choose Us - Image Alignment */
.choose-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.choose-image:hover img {
    transform: scale(1.03);
}

/* Make image overlay more subtitle */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.8));
    color: white;
    padding: 20px 15px;
    text-align: center;
}

.image-overlay h5 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Full Width Promise Card */
.promise-card-full {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promise-card-full h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.promise-card-full p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 15px;
}

.promise-quote {
    color: var(--dark) !important;
    font-size: 1.2rem !important;
    padding-top: 15px;
    border-top: 1px solid #eee;
    max-width: 600px !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
}

/* Feature List Styling */
.feature-list {
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: rgba(42, 92, 138, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-check {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 14px;
}

.feature-text h5 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ensure proper object-fit for images */
.object-fit-cover {
    object-fit: cover !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .choose-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .promise-card-full {
        padding: 30px 20px;
    }
    
    .promise-card-full h4 {
        font-size: 1.5rem;
    }
    
    .promise-card-full p {
        font-size: 1rem;
    }
    
    .promise-quote {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .choose-image {
        height: 250px;
    }
    
    .promise-card-full {
        padding: 25px 15px;
    }
    
    .promise-card-full h4 {
        font-size: 1.3rem;
        flex-direction: column;
    }
    
    .promise-card-full h4 i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Enhanced CTA Section */
.cta-enhanced {
    background: linear-gradient(rgba(42, 92, 138, 0.6), rgba(26, 54, 93, 0.6)),
                url("../img/img3.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.action-card h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.action-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    flex-grow: 1;
}

.action-card .btn {
    border-width: 2px;
    font-weight: 600;
    padding: 8px 25px;
}

/* Responsive Adjustments */
/* Why Trust Us - Mobile Icon Center */
@media (max-width: 768px) {
  .trust-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .trust-icon {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }
  
  .trust-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .trust-content p {
    font-size: 0.9rem;
  }
}

/* Services */
.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.service-card h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Projects */
.project-slide {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-slide:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 54, 93, 0.9));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
}

.project-slide:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.cta-section {
  background:
    linear-gradient(rgba(42, 92, 138, 0.6), rgba(26, 54, 93, 0.6)),
    url("../img/img3.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: white;
  color: var(--primary);
  padding: 16px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s;
  border: 2px solid white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 92, 138, 0.1);
  outline: none;
}

.contact-info {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  background: var(--secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Custom Dropdown with Icons */
.custom-dropdown-container {
  position: relative;
  width: 100%;
}

.custom-dropdown-toggle {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s;
  text-align: left;
}

.custom-dropdown-toggle:hover {
  border-color: var(--primary);
}

.custom-dropdown-toggle:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 92, 138, 0.1);
  outline: none;
}

.custom-dropdown-toggle.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--primary);
}

.toggle-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.toggle-icon {
  margin-right: 10px;
  color: var(--primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.toggle-text {
  flex-grow: 1;
  color: #999;
}

.toggle-arrow {
  color: #666;
  transition: transform 0.3s;
}

.custom-dropdown-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--primary);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.custom-dropdown-menu.show {
  display: block;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-option {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background-color: rgba(42, 92, 138, 0.1);
  color: var(--primary);
}

.dropdown-option.selected {
  background-color: rgba(42, 92, 138, 0.15);
  color: var(--primary);
  font-weight: 600;
}

.option-icon {
  margin-right: 12px;
  color: var(--primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.option-text {
  flex-grow: 1;
}

/* Scrollbar styling */
.custom-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.video-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.video-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Scroll to Top Button Strat Here */
.scroll-top-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(42, 92, 138, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-float:hover {
  background-color: var(--dark);
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 6px 25px rgba(42, 92, 138, 0.5);
}


/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 70px 0 20px;
}

.footer h5 {
  color: var(--secondary);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.footer .row {
  align-items: flex-start; 
}

.footer-img {
  display: block;
  margin-top: -30px;  
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero {
    padding: 150px 0 100px;
    min-height: 80vh;
    margin-top: -70px;
  }
}

/* Hero Section Mobile Fixes */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 57px;
  }
  
  .hero h1 p {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.4;
    opacity: 0.9;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .hero .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .video-controls {
    bottom: 10px;
    right: 10px;
  }

  .scroll-top-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero h1 p {
    font-size: 1rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .hero .d-flex {
    flex-direction: column;
    gap: 15px !important;
  }
  
  .hero .btn {
    width: 100%;
    max-width: 280px;
  }
    .contact-form {
    padding: 30px 20px;
  }

  .navbar-collapse {
    width: 100%;
    max-width: none;
  }

  .scroll-top-float {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 15px;
    right: 15px;
  }
}
 