
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #302f2f;
  /* background-color: #00000080; */
  /* background-color: #FFFFFF80; */
  /* --background-color: #transparant; */


  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;

}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
 

  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
.header {
  padding-left: 0;
  padding-right: 0;
}

.navmenu {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
right: 10px;
width: 300px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
    text-align: center;
  }
  #hero-carousel-paragraph{
    font-size: 15px !important;
  }
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {


  
  .navmenu {
    padding: 0;
    display: flex;
    justify-content: center ;
    
   }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
  }
  .text{
    color: white;
    
 
}

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    transition: 0.3s;
    
  }

  .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;
    /* padding: 10px; */
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    right: 0px;
    left: -25px;
    top: 160%;
    opacity: 0;
    transition: 1s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    width: 200px;
    margin: 10px;
  }

  .navmenu .dropdown ul li {
    min-width: 100px;
    margin: 10px;
  }

  .navmenu .dropdown ul a {
    /* padding: 10px 20px; */
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    line-height: 5px;
  }

  .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: var(--nav-dropdown-hover-color);
    width: 100%;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -100%;
    visibility: hidden;
    border-radius: 10px;
    margin-left: -35px;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/*  */
.top{
  border-radius: 10px 10px 0 0;
}
.bottom{
  border-radius: 0 0 10px 10px;
}
.navmenu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding: 10px 5px;
  transition: color 0.3s ease;
}
.features{
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.features-item {
  align-items: flex-start;
}
.features-item i {
  font-size: 24px;       /* or match with h4 font-size */
  line-height: 1.2;      /* tight line height to reduce vertical offset */
  margin-right: 15px;    /* spacing between icon and text */
  position: relative;
  top: 25px;              /* tweak this value until it aligns perfectly */
}

/* Horizontal line */
.navmenu .line::after
 {
  content: '';
  position: absolute;
  bottom: -2px; /* Slightly below the text */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color); /* Your theme color */
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s ease, opacity 0.3s ease;
}

/* Vertical line from center of horizontal */
.navmenu .line::before {
  content: '';
  position: absolute;
  bottom: -2px; /*Same as horizontal*/
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 2px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 1s ease;
  opacity: 0;
}

/* Hover effect */
.navmenu a:hover::after,
.navmenu a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.navmenu a:hover::before,
.navmenu a.active::before {
  height: 10px; /* Length of vertical line */
  opacity: 1;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .text{
    color: #000;
  }

  .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(--nav-mobile-background-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: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  /* font-family: var(--heading-font); */
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  /* font-family: var(--heading-font); */
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h5 {
  font-size: 30px;
  position: relative;
  padding-bottom: 6px;
}

.footer .footer-links {
  /* margin-bottom: 30px; */
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .footer .footer-links {
    margin-top: 2px;
  }
  .mobile-social{
  /* margin-bottom: 1000px !important; */
  padding-top: 30px !important;
}
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 14px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 17px;
}



.footer .copyright {
  padding: 30px 0;
  font-size: 16px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 15px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.footer-top{
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 0.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.map{
  position: relative;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
#bangalore{
  position: relative;

  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {                                                                                       

  section,
  .section  {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
  position: relative;
  padding-top: 0;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  /* background: var(--accent-color); */
}

.section-title p {
  color: var(--heading-color);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero #heroCarousel,
.hero .carousel-inner,
.hero .carousel-item,
.hero .hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-bg-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {

  padding: 10px 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}


.hero .icon-box i {
  font-size: 32px;
  /* line-height: 0px; */
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 10px;
  font-size: 20px;
  line-height: 26px;

}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .marquee-grid {
    display: flex;
    flex-direction: column;
  }

  .marquee-item {
    margin-bottom: 16px !important; /* adds space between items */
    height:20vh !important;
  }


}
.top-bar {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* background-color: #f9f9f9; */
  padding: 20px 0;
  padding-top: 80px;
}

.marquee-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: px;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Make all items the same size */
.marquee-item {
  height: 150px; /* Set fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  line-height: 0.3;  
  margin: 0;
  padding: px;          /* optional: tightens up the line */

}

/* Optional: force icon-box to fill height */
.marquee-item .icon-box {
  width: 210px;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop: 5 columns */
@media (min-width: 768px) {
  .marquee-grid {
    grid-template-columns: repeat(5, 1fr);
  }


}
#hh {
  width: 50%;             /* Default: mobile view */
  white-space: nowrap;
  display: block;
  margin: 0 auto;         /* Center the button */
}

/* Laptop and larger (≥992px) */
@media (min-width: 992px) {
  #hh {
    width: 25%;
  }
}



/*  */
@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }  /* Zoom in */
  100% { transform: scale(1); }   /* Zoom out */
}

.marquee-item {
  animation: zoomInOut 6s ease-in-out infinite; /* 2s for each cycle, infinite loop */
}

/* Optional: stagger delay for each item */
.marquee-item:nth-child(1) { animation-delay: 0.1s; }
.marquee-item:nth-child(2) { animation-delay: 0.2s; }
.marquee-item:nth-child(3) { animation-delay: 0.3s; }
.marquee-item:nth-child(4) { animation-delay: 0.4s; }
.marquee-item:nth-child(5) { animation-delay: 0.5s; }
.marquee-item:nth-child(6) { animation-delay: 0.6s; }
.marquee-item:nth-child(7) { animation-delay: 0.7s; }
.marquee-item:nth-child(8) { animation-delay: 0.8s; }
.marquee-item:nth-child(9) { animation-delay: 0.9s; }
.marquee-item:nth-child(10) { animation-delay: 1s; }
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/


.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  margin-bottom: 35px !important;
  padding-bottom: 0 !important;
}
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  margin-top: 35px !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;

}
.stats .stats-item {
  padding: px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

.careerimg{
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%; 
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;

}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}



    #main {
      /* background: url('https://images.unsplash.com/photo-1510851896000-498520af2236?fm=jpg&q=60&w=3000') center center no-repeat; */
      background-size: cover;
      color: white;
      position: relative;
    }

    #main::before {
      content: '';
      /* background: rgba(0, 0, 0, 0.7); */
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
    }

    #main .container {
      position: relative;
      z-index: 2;
    }

    /* Image Thumbnails */
    .img-thumbnail {
      cursor: pointer;
      transition: transform 0.2s;
      height: 33vh !important;
      object-fit: cover;

    }

    .img-thumbnail:hover {
      transform: scale(1.02);
    }
    .modal-image1 {
      cursor: pointer;
      transition: transform 0.2s;
      /* height: 100vh !important; */
      object-fit: cover;
      
        padding: 0.25rem;        
        background-color: #fff; 
        border: 1px solid #dee2e6;
        border-radius: 0.375rem; 
        max-width: 100%;         
        height: auto;            
      
      
    }

    .modal-image1:hover {
      transform: scale(1.02);
    }
    #imageModal1{
      display:none;
      position:fixed; 
      top:0; left:0; 
      width:100%; 
      height:100%; 
      background-color:rgba(0,0,0,0.8);
      justify-content:center;
      align-items:center; 
      z-index:1000;
    }
    @media (max-width: 768px) {
      .modal-image1 {
        cursor: pointer;
        transition: transform 0.2s;
        height: 33vh;
        object-fit: cover;
      }
     
    }

    /* Modal Styles */
    .modal-body {
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    .close-btnn {
      position: absolute;
      top: 10px;
      right: 60px;
      font-size: 1.5rem;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    @media (max-width: 768px) {
      .close-btnn {
        right: 20px;

      }}


    .close-btn:hover {
      background: rgba(0, 0, 0, 0.8);
    }


    /* social media icons */

    .sailsocialblock {
      position: fixed;
      top: 50%;
      right: -150px; 
      transform: translateY(-50%);
      z-index: 999999;
      overflow: visible;
      background-color:transparent; 
  }
  .sailsocialblock h2.block-title {
      display: none;
  }
  ul.social_sail {
      padding: 0;
      list-style: none;
      width: 190px;
  }
  ul.social_sail li {
      margin: 3px 0;
      display: inline-block;
      width: 100%;
      position: relative;
      height: 40px;
  
  }
  ul.social_sail li a {
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      padding: 0 10px 0px 40px;
      /* padding: 0 10px 0 60px;  */
      line-height: 50px;
      color: #000;
      background: #ffc451;
      border-radius: 25px 0 0 25px;
      text-align: left;
      text-decoration: none;
      transition: 2.5s;
  
  }
  ul.social_sail li a:hover {
      left: -90px;
  
  }
  ul.social_sail li a:before {
      font-size: 20px;
      line-height: 50px;
      width: 30px;
      position: absolute;
      left: 10px;
      text-align: center;
  
  }
  .class{
      font-family: "Poppins",  sans-serif;
      font-weight:bold;
     
      
  
  }
 
    /* Default styling for active buttons */
    .nav-tabs .nav-link {
      
      transition: 0.3s;
      background-color: #ffc451;
      color: rgb(0, 0, 0);
      border-color: #ffc451;
      width: 150px;
  
 }
    
    /* Hover effect */
    .nav-tabs .nav-link:hover {
      background-color: #ffc451;
      color: #000000;
      
    }
    
    /* Active tab */
    .nav-tabs .nav-link.active {
      color: white;
      border: 1px solid #000000;
      background-color: rgb(0, 0, 0);
    }



     /* Container for the map and overlay */
 #map-containe {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height for responsiveness */

}
/* The map iframe */
#map {
  width: 100%;
  height: 100vh;
  border: 0; /* Remove default border */
  
}
/* The overlay box */
.overlay {
  position: absolute;
  top: 1%; /* Adjust these values for responsiveness */
  left: 0.7%;
  width: 80%; /* Responsive width */
  max-width: 305px; /* Maximum width for larger screens */
  min-height: px; /* Minimum height to accommodate content */
  background: rgba(255, 255, 255, 2); /* Semi-transparent background */
  padding: 6px;
  z-index: 1; /* Ensure the overlay is on top of the map */
  
}
.overlay h6{
  font-size: 12px;
  font-weight: bold;
}

/* scroll arrow */


.scroll-btn {
  position: fixed;
  right: 0px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ffc451;
  cursor: pointer;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: bold;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  outline: none; /* Remove blue square */

}

/* Move Up Button */
#moveUp {
  bottom: 65px;
  background-color: #ffc451; /* Pinkish-Red */
  color: #000000;
  font-weight: bolder;
}

/* Move Down Button */
#moveDown {
  bottom: 20px;
  background-color: #ffc451; /* Orange */
  color: #000000;
}

#moveUp:hover {
  background-color: #ffc451; /* Pinkish-Red */
  color: #000000;
}

/* Move Down Button */
#moveDown:hover {
  background-color: #ffc451; /* Orange */
  color: #000000;
}

/* Hover Effects */
.scroll-btn:hover {
  transform: scale(1.1);
}

/* Remove focus and focus-visible outlines */
.scroll-btn:focus,
.scroll-btn:focus-visible {
  outline: none; /* Remove focus outline */
}

@media (max-width: 768px) {
  .scroll-btn {
    position: fixed;
    right: 0px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ffc451;
    cursor: pointer;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    outline: none; /* Remove blue square */
  }
  #moveUp {
      bottom: 90px;
  }
  
  /* Move Down Button */
  #moveDown {
      bottom: 40px;
  }

}

.maph{
  font-family: "Roboto", sans-serif;
font-size: 14px;
}
.mapv{
  color: #0d6efd;
}
.mapv:hover{
text-decoration: underline;
color: #0d6efd;
}
#imageModal {
  padding: 40px;
}

/* mobile applications modal */
#closeModal1{
 position:absolute;
 top:20px;
 right:30px;
 font-size:40px;
 color:rgb(255, 255, 255); 
 cursor:pointer;
}
@media (max-width: 768px) {
  #closeModal1{
    color:rgb(0, 0, 0); 
    border-color: #000;

  }
 

}
/* image heading */
.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
height: 100%;}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.image-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.721); */
  background-color: rgba(0, 0, 0, 0.5);
  /* background-color: #ffc551bf;  */
 
  color: #ffffff;
  /* padding: 10px 20px; */
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  padding-inline: 29px;
  padding-block: 10px;
  

}
.image-container img {
  width: 100%;
  height: auto;
  max-height: 50vh; /* adjust as needed */
  object-fit: cover;
}


/* heading space removing */
.no-bottom-space {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 25px !important;
}
.no-spacing {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.hero-text-content{
 margin-inline: 0px !important;
 padding-inline: 0px !important;
}

/* Ads Page  */
.ads{
margin-top: 80px;
}
.main-heading {
  font-size: 50px;

}
#hero-carousel-heading{
  font-size: 25px;
  margin-inline: 0px !important;
  padding-inline: 0px !important;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 30px;
  }
  #hero-carousel-heading{
    font-size: 20px;
  }
}
#hero-carousel{
  font-size: 17px;
}

/* Default: hide mobile version */
.mobile-only {
  display: none;
}

/* Hide desktop version on mobile */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
    visibility: visible !important;
  }
  .new{
    padding-inline: 0px !important;
  }
}
.new{
  padding-inline: 150px;
  color: black;
}
#content1{
  scroll-margin-top:120px ;
}
#content2{
  scroll-margin-top:120px ;
}
#content3{
  scroll-margin-top:120px ;
}
#content4{
  scroll-margin-top:120px ;
}
#content5{
  scroll-margin-top:120px ;
}
.icon-box {
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.marquee-item.active .icon-box {
  border-color: #ffc451; 
}
.image-container {
  cursor: pointer;
}

.image-heading {
  pointer-events: none; 
}
.footer-logo{
  width: 300px;
  max-height:100px !important;
}
@media (max-width: 767px) {
  .footer-logo{
    width: 200px;
    max-height: 200px !important;

  }
  .header .logo img{
    width: 200px;
    max-height: 200px !important;
  }
  #prevBtn{
font-size:14px !important ;
}
#nextBtn{
font-size:14px !important ;
}
  
}
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}
#prevBtn{
  width: 115px !important;
}
#nextBtn{
  width: 110px !important;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.bullet {
  width: 14px;
  height: 14px;
  background: #808080;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.bullet.active {
  background: #ffc451;
}


.marquee-item.active {
  color: white;
}

.content-section {
  display: none;
  margin-top: 20px;
  font-size: 20px;
}

.controls {
  margin-top: 20px;
}
#prevBtn{
  width: 150px;
  font-weight: bold;
}
#nextBtn{
  width: 150px;
  font-weight: bold;
}
.modal3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dimmed background */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    z-index: 1000;
}

.modal-content3 {
    background: #fff;
    color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#responseMessage3 {
    background-color: white !important; /* Set text color to white */
}



#popupContainer {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Popup Box */
    #popupBox {
      background-color: #fff;
      color: #333;
      width: 100%;
      max-width: 420px;
      padding: 24px 20px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      position: relative;
      font-family: 'Segoe UI', sans-serif;
      box-sizing: border-box;
    }

    /* Close Button */
    #closeBtn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 22px;
      font-weight: bold;
      color: #888;
      cursor: pointer;
    }

    #closeBtn:hover {
      color: #000;
    }

    /* Heading */
    .popup-heading {
      font-size: 22px;
      font-weight: 600;
      color: #2b2b2b;
      margin-bottom: 16px;
      text-align: center;
    }

    /* Description */
    .popup-desc {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .popup-desc .highlight-title {
      font-weight: bold;
      color: #2e7d32;
    }

    .service-list {
      margin: 8px 0 14px 18px;
      padding: 0;
      list-style-type: disc;
      color: #333;
    }

    .solution-list {
      margin-top: 8px;
      margin-bottom: 14px;
      padding-left: 10px;
    }

    .solution-list div {
      margin-bottom: 6px;
    }

    /* Location Section */
    .popup-location {
      margin-top: 12px;
      padding-top: 10px;
      border-top: 1px dashed #ccc;
      font-size: 14px;
      line-height: 1.6;
    }

    .popup-location span {
      font-weight: bold;
    }

    /* Contact Section */
    .popup-contact {
      font-size: 13.5px;
      margin-top: 14px;
      line-height: 1.8;
    }

    .popup-contact a {
      color: #0073e6;
      text-decoration: none;
    }

    .popup-contact a:hover {
      text-decoration: underline;
    }

    /* Responsive Fix */
    @media (max-width: 480px) {
      #popupBox {
        padding: 20px 15px;
      }
      .popup-heading {
        font-size: 20px;
      }
    }







