  /* Root Variables start*/
  :root {
    /* Primary Colors - Modernized */
    --PrimaryColor: #0056b3;  /* Deep vibrant blue */
    --PrimaryDark: #004494;   /* Slightly darker shade */
    --PrimaryLight: #e0f0ff;  /* Soft light blue for backgrounds */
  
    /*Secondary Colors */
    --SecondaryColor: #ff9800;  /* Warm orange accent */
    --SecondaryDark: #e68900;
    --SecondaryLight: #fff3e0;
  
    /* Neutral Colors */
    --LightColor: #ffffff;     /* Pure white */
    --DarkColor: #333333;      /* Deep gray for contrast */
    --GrayColor: #777777;      /* Medium gray */
    --LightGray: #f8f9fa;      /* Soft background gray */
  
    /* Utility Colors (Enhanced) */
    --SuccessColor: #28a745;   /* Modern success green */
    --ErrorColor: #dc3545;     /* Vibrant error red */
    --WarningColor: #ffc107;   /* Attention-grabbing yellow */
    --InfoColor: #17a2b8;      /* Calming cyan blue */
  
    /* Modern Typography */
    --FontFamily: 'Poppins', sans-serif; /* Stylish modern font */
    --FontSizeBase: 16px;   /* Standard base size */
    --FontSizeLarge: 18px;  /* Bigger for headings */
    --FontSizeSmall: 14px;  /* Small text size */
    --LineHeight: 1.7;      /* Improved readability */
  
    /* Spacing & Layout */
    --SpacingXSmall: 6px;
    --SpacingSmall: 10px;
    --SpacingMedium: 20px;
    --SpacingLarge: 30px;
    --SpacingXLarge: 40px;
    --SpacingXXLarge: 60px;
  
    /* Shadows - Modern Soft UI */
    --ShadowSmall: 0 2px 5px rgba(0, 0, 0, 0.1);
    --ShadowMedium: 0 4px 10px rgba(0, 0, 0, 0.15);
    --ShadowLarge: 0 6px 18px rgba(0, 0, 0, 0.2);
  
    /* Borders - Smooth & Soft */
    --BorderRadiusSmall: 6px;
    --BorderRadiusMedium: 12px;
    --BorderRadiusLarge: 18px;
    --BorderColor: #ddd;
  
    /* Smooth Transitions */
    --TransitionFast: 0.2s ease-in-out;
    --TransitionMedium: 0.4s ease-in-out;
    --TransitionSlow: 0.6s ease-in-out;
  }
  /* Root Variables end*/
 
  /* General reset and general styles combine start */
  /* Global Reset - Ensuring Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--FontFamily);
  }
  
  /* Base Styles */
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* General Styles - Modern & Responsive */
  body {
    font-family: var(--FontFamily);
    font-size: var(--FontSizeBase);
    line-height: var(--LineHeight);
    color: var(--DarkColor);
    background-color: var(--LightGray); /* Soft background for a modern feel */
    transition: background var(--TransitionMedium), color var(--TransitionMedium);
  }
  
  /* Headings - Better Hierarchy & Readability */
  h1, h2, h3, h4, h5, h6 {
    color: var(--PrimaryColor);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--SpacingSmall);
    transition: color var(--TransitionFast);
  }
  
  /* Make H1 Stand Out */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1rem; }
  
  /* Links - Smooth & Interactive */
  a {
    color: var(--PrimaryColor);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--TransitionFast), transform var(--TransitionFast);
  }
  
  a:hover {
    color: var(--PrimaryDark);
    transform: translateY(-1px); /* Subtle hover effect */
  }
  
  /* Lists Reset */
  ul, ol {
    list-style: none;
    padding-left: 0;
  }
  
  /* Buttons & Inputs - Clean & Modern */
  input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: transparent;
  }
  
  /* Smooth Focus Effect for Accessibility */
  *:focus {
    outline: 2px solid var(--PrimaryColor);
    outline-offset: 2px;
    transition: outline var(--TransitionFast);
  }
  
  /* Responsive Images */
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--BorderRadiusSmall);
  }
  
  /* Responsive Typography */
  @media (max-width: 991px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
  }
    /* General reset and general Styles combine end */
  
#topbar {
    background: var(--PrimaryColor); /* Use Primary Color for strong branding */
    color: var(--LightColor);
    padding: var(--SpacingSmall) 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background var(--TransitionMedium);
  }
  
  /* Top Bar Links */
  #topbar a {
    color: var(--LightColor);
    transition: color var(--TransitionFast), opacity var(--TransitionFast);
  }
  
  #topbar a:hover {
    color: var(--SecondaryColor);
    opacity: 0.8;
  }
  
  /* Top Bar Icons */
  #topbar i {
    color: var(--SecondaryColor);
    font-size: 1rem;
    margin-right: 5px;
  }
  
  /* Top Bar Contact Info */
  .top-header-span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 991px) {
    #topbar {
      font-size: 0.85rem;
      text-align: center;
    }
  
    .top-header-span {
      display: block;
      text-align: center;
      padding: 3px 0;
    }
  }
  
  /* Navbar Base Styling */
.navbar {
  background: var(--LightColor);
  padding: var(--SpacingMedium) 0;
  box-shadow: var(--ShadowMedium);
  transition: all var(--TransitionMedium);
}

.navbar {
  position: relative;
  z-index: 1050; /* Ensures it's above other elements */
}

/* Logo Styling */
.nav-logo {
  height: 70px;
  width: auto;
  transition: transform var(--TransitionFast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* Navbar Links */
.navbar-nav .nav-item {
  margin: 0 var(--SpacingSmall);
}

.navbar-nav .nav-link {
  color: var(--DarkColor);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--SpacingSmall) var(--SpacingMedium);
  text-transform: uppercase;
  transition: color var(--TransitionFast), transform var(--TransitionFast);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--DarkColor) !important;
}

/* Apply hover and active styles properly for navbar-light */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--PrimaryColor) !important;
  transform: translateY(-2px);
}

/* Mobile Navbar Styles */
.navbar-toggler {
  border: none;
  /* outline: none; */
  background-color: transparent;
  /* font-size: 1.5rem; */
}

.navbar-toggler-icon {
  display: inline-block; /* Ensures it's visible */
  width: 30px; /* Adjust size if needed */
  height: 30px;
  background-size: cover;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar {
      padding: var(--SpacingSmall) 0;
  }

  .nav-logo {
      height: 60px;
  }

  .navbar-nav {
      text-align: center;
      margin-top: var(--SpacingSmall);
  }

  .navbar-nav .nav-item {
      margin-bottom: var(--SpacingSmall);
  }

  .navbar-nav .nav-link {
      display: block;
      padding: var(--SpacingSmall);
  }

  /* Mobile Navigation */
  .navbar-collapse {
      background: white; /* Optional: Add a background for better visibility */
      padding: 10px; /* Add spacing */
  }
}

/* Extra Small Screens (Mobile) */
@media (max-width: 767px) {
  .navbar {
      padding: var(--SpacingExtraSmall) 0;
  }

  .nav-logo {
      height: 50px;
  }

  .navbar-nav {
      text-align: left;
      padding-left: var(--SpacingMedium);
  }

  .navbar-toggler {
      font-size: 1.8rem;
  }
}
 
/* Carousel Section */
.hero {
    position: relative;
    overflow: hidden;
  }
  
  /* Carousel Images */
  .carousel-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(80%);
  }
  
  /* Carousel Container */
  .carousel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--LightColor);
    width: 80%;
    max-width: 800px;
  }
  
  /* Carousel Text Styling */
  .carousel-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--LightColor);
  }
  
  .carousel-text {
    font-size: 1.2rem;
    margin: 15px 0;
    font-weight: 400;
    color: var(--LightGray);
  }
  
  /* Read More Button */
  .btn-carousel {
    display: inline-block;
    background: var(--PrimaryColor);
    color: var(--LightColor);
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 5px;
    transition: all var(--TransitionFast);
  }
  
  .btn-carousel:hover {
    background: var(--PrimaryDark);
    transform: translateY(-3px);
  }
  
  /* Carousel Indicators */
  .carousel-indicators li {
    background-color: var(--PrimaryColor);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px;
    transition: width 0.3s ease;
  }
  
  .carousel-indicators .active {
    width: 16px;
    height: 16px;
    background-color: var(--PrimaryDark);
  }
  
  /* Carousel Controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    transition: all var(--TransitionFast);
  }
  
  .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    background-color: var(--PrimaryColor);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .carousel-heading {
      font-size: 2rem;
    }
  
    .carousel-text {
      font-size: 1rem;
    }
  
    .btn-carousel {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  
    .carousel-container {
      width: 90%;
    }
  }
  
 .expertise-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 60px 0;
}

/* Section Heading */
.expertise-heading {
  font-size: 1.8; /* Adjust font size here */
  font-weight: 700;
  color: #0056b3;
  text-align: center; /* Center align the heading */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Underline for Heading */
.expertise-heading::after {
  content: "";
  width: 110px; /* Adjust underline length here */
  height: 4px;
  background: #0056b3;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Expertise Cards - Equal Height */
.expertise-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icons - All Icons Now Have the Same Color */
.icon-container {
  width: 65px; /* Adjust outer icon size */
  height: 65px; /* Adjust outer icon size */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff; /* Adjust background color for all icons */
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* Icon Styling - Ensures All Icons Have the Same Color */
.icon-container svg {
  width: 35px; /* Adjust icon size */
  height: 35px;
  fill: #ffffff !important; /* Ensures all icons have the same color */
  stroke: none !important; /* Removes any black stroke that might be causing the issue */
  color: #ffffff !important; /* Ensures text-based SVG icons also get white color */
}

/* Expertise Titles - All Column Headings Now Have the Same Color */
.expertise-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0056b3; /* Adjust heading color for all columns here */
}

/* Expertise List */
.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.expertise-card:hover .expertise-list li {
  color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .expertise-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .expertise-heading {
    font-size: 2rem; /* Adjust font size for small screens */
  }
  .expertise-title {
    font-size: 1.1rem;
  }
  .expertise-list li {
    font-size: 0.95rem;
  }
  .icon-container {
    width: 55px; /* Adjust outer icon size */
    height: 55px; /* Adjust outer icon size */
  }
  .icon-container svg {
    width: 30px; /* Adjust inner icon size */
    height: 30px; /* Adjust inner icon size */
  }
}

@media (max-width: 576px) {
  .expertise-card {
    padding: 20px;
  }
  .expertise-title {
    font-size: 1rem;
  }
  .expertise-list li {
    font-size: 0.9rem;
  }
}
  
 .why-choose-section {
  background: linear-gradient(to right, #1e3c72, #2a5298); /* Modern gradient background */
  color: #fff;
  padding: 50px 0;
}

/* Heading Styling */
.why-choose-heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f8f9fa;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.why-choose-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f8f9fa;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* Paragraph Styling */
.why-choose-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e3e3e3;
}

.brand-name {
  font-weight: bold;
  color: #f8f9fa;
}

/* CTA Text Styling */
.why-choose-cta {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
}

/* Learn More Button */
.why-choose-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  background: #ffcc00;
  color: #333;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.why-choose-btn:hover {
  background: #ffaa00;
  color: #222;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .why-choose-heading {
    font-size: 2rem;
  }

  .why-choose-text {
    font-size: 1.1rem;
  }

  .why-choose-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
  
.about-section {
  background: linear-gradient(to right, #141e30, #243b55); /* Modern gradient background */
  color: #ffffff;
  padding: 60px 0;
}

/* Heading Styling */
.about-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #f8f9fa;
  text-align: center;
  position: relative;
  display: inline-block;
  /* padding-bottom: 1px; */
}

.about-underline {
  width: 75px;
  height: 4px;
  background: #ffcc00;
  margin: 1px auto 0;
}

/* Paragraph Styling */
.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e3e3e3;
  text-align: justify;
}

.brand-name {
  font-weight: bold;
  color: #ffcc00;
}

/* Read More Button */
.about-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  background: #ffcc00;
  color: #333;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.about-btn:hover {
  background: #ffaa00;
  color: #222;
  transform: translateY(-3px);
}

/* Image Styling */
.about-image {
  max-width: 90%;
  height: 505px;
  border-radius: 15px;
  margin-bottom: 90px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-heading {
    font-size: 2.2rem;
  }

  .about-text {
    font-size: 1.1rem;
  }

  .about-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
 

/* Contact Section Base Styling */
.contact-section {
  background: linear-gradient(to right, #0062E6, #33AEFF);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

/* Section Title */
.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.heading-underline {
  width: 80px;
  height: 4px;
  background: #FFD700;
  margin: 10px auto 20px;
}

.section-title p {
  font-size: 1.2rem;
  color: #f8f9fa;
}

/* Google Map */
.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Information & Contact Form - Equal Height */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info,
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 100%;
}

/* Contact Information */
.contact-info {
  background: #ffffff;
  color: #333;
  text-align: center;
}

.info-box {
  margin-bottom: 20px;
}

.info-box i {
  font-size: 2.2rem; /* Adjust icon size here */
  color: #FFD700;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 1rem;
  color: #666;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 1rem;
}

textarea.form-control {
  resize: none;
}

.btn-submit {
  background: #FFD700;
  color: #333;
  padding: 8px 18px;
  border: none;
  border-radius: 5px;
  font-size: 1.0rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
  background: #FFA500;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    min-height: auto;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .contact-info {
    padding: 20px;
  }

  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .info-box i {
    font-size: 2.5rem; /* Adjust icon size for mobile */
  }

  .btn-submit {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

  .footer {
    background: linear-gradient(to right, #1a1a2e, #16213e); /* Modern background */
    color: #f8f9fa;
    padding: 40px 0;
    font-size: 16px;
  }
  
  .footer h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f8f9fa;
    position: relative;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    color: #b8c6db;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer ul li a:hover {
    color: #f1c40f;
  }
  
  .footer-about .sitename {
    font-size: 22px;
    font-weight: bold;
    color: #f1c40f;
  }
  
  .footer p {
    margin: 0;
    color: #b8c6db;
  }
  
  .footer .social-links a {
    font-size: 18px;
    color: #b8c6db;
    margin-right: 15px;
    transition: color 0.3s;
  }
  
  .footer .social-links a:hover {
    color: #f1c40f;
  }
  
  .footer .copyright {
    font-size: 14px;
    color: #b8c6db;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 991px) {
    .footer-top .row {
      text-align: center;
    }
    .footer .social-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .footer-about {
      margin-bottom: 30px;
    }
  }  