/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  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: #f3f3f3; /* Background color for the entire website, including individual sections */
  --default-color: #636266; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d2c32; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #125ca7; /* 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: #ffffff; /* 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: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* 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: #2d2c32;
  --surface-color: #f3f3f3;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


.button{
display:inline-block;
font-size:14px;
font-weight:500;
text-decoration:none;
padding:12px 28px;
border-radius:6px;
color:#fff;
background:linear-gradient(135deg,#115ba6,#0d4c8c);
transition:all .3s ease;
position:relative;
overflow:hidden;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* Hover Effect */
.button:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
background:linear-gradient(135deg,#0d4c8c,#083a6b);
color:#fff;
}
.button::after{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:rgba(255,255,255,0.2);
transition:0.4s;
}

.button:hover::after{
left:100%;
}
/* Dark Button */
.btn-black{
background:#2d2c32;
}

.btn-black:hover{
background:#000;
}

img{
height:auto;
max-width:100%;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
p {color: #242424;}
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);
}
img {
  width: 100%;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

#header.sticky {
    position: fixed;
    background: #111827;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-box img {
    max-width: 75px;
    transition: 0.3s;
}

#header.sticky .logo-box img {
    max-width: 65px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 12px;
    margin-right: 15px;
}

.header-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s;
}

.header-contact a:hover {
    color: #1e73be;
}

.header-contact i {
    color: #1e73be;
}

/* NAVIGATION */
#mainmenu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

/* Hover underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #1e73be;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: #1e73be !important;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}


/* MOBILE NAVBAR */
@media (max-width: 991px) {
    
    #header {
        padding: 12px 0;
        background: #111827; 
    }

    /* SHOW TOGGLE */
    .mobile-toggle {
        display: block;
    }

    /* MOBILE DROP DOWN BOX */
    .header-right {
        display: block; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1f2937; 
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .header-right.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
        pointer-events: auto;
    }
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    /* MENU LIST */
    #mainmenu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 20px;

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 10px;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-link.active {
        background: rgba(30, 115, 190, 0.1);
        border-left: 3px solid #1e73be;
        padding-left: 15px;
    }

    .logo-box img {
        max-width: 60px;
    }
    .nav-link::after {
        display: none;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 5px 10px 5px 10px;
        margin-bottom: 0;
    }

    .header-contact a {
        font-size: 14px; 
        color: rgba(255, 255, 255, 0.7);
    }
    
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

#footer {
  background:#2d2c32 ;
}
.footer-logo a {
    display: inline-block;
}
.footer-logo a img {
  width: 70px;
}
.contact-us-container {
    background: #222127;
}
.contact-us-container .box {
    /* float: left;
    width: 30%;
    border-right: 1px solid #28272d; */
    padding: 40px 0px 40px 8px;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
    border-right: 1px solid #28272d;
}
.contact-us-container .box em {
    float: left;
    font-size: 40px;
    vertical-align: top;
    margin-right: 20px;
}
.contact-us-container .box ul {
    margin: 0;
    padding: 0;
}
.location-svg svg {
    fill: #828282;
}

.contact-us-container .box span {
    display: block;
}
.contact-us-container .box span a {
    color: #828282;
}
.contact-us-container .box li {
    display: inline-block;
    padding: 0 15px;
}
.contact-us-container .box li a i {
    display: inline-block;
    font-size: 20px;
    color: #828282;
    transition: all 0.4s;
}
.contact-us-container .box li a:hover i {
  color:var(--accent-color);
}
 .box-address,.box-contact {
    display: flex;
}
.box-address i {
  font-size: 26px;
}
.box-address address {
  margin-left: 12px;
  margin-bottom: 0;
  font-size: 15px;
  max-width: 330px;
}
.box-contact {
  margin-bottom: 10px;
}
.box-contact:last-child {
  margin-bottom: 0;
}
.box-contact a {
    margin-left: 12px;
    color: #828282;
    transition: all 0.4s;
    font-size: 15px;}
.box-contact a:hover {
  color:#125ca7;
}
.box-contact i {
    font-size: 18px;
}
.contact-us-container .contact-us {
    float: right;
    width: 149px;
    border: 2px solid #828282;
    color: #828282;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 12px;
    letter-spacing: 1px;
}
.contact-us-container .contact-us:hover{
  background: #125ca7;
    border: 2px solid #125ca7;
    color: #fff;
}
.primary-footer {
    padding-top: 25px;
}
.primary-footer .list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.primary-footer .list li {
    width: 14%;
    margin-bottom: 17px;
    text-align: center;
}
.primary-footer .list li a {
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    color: #767381;
    transition: all 0.4s;

}
.primary-footer .list li a:hover {
  color:#125ca7;
}
#footer .copyright {
    font-size: 15px;
    color: #51505a;
    display: inline-block;
    border-top: 1px solid #363539;
    margin-top: 0px;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}
.copyright a {
    color: #51505a;
}






@media screen and (min-width: 992px) {

  .navbar { padding: 0; }
}

@media screen and (max-width: 991px) {
    
.navbar-nav { padding-top: 0.5em; }
.box-address, .box-contact { display: flex; flex-direction: column; text-align: center; }
.contact-us-container { padding: 40px 0;}
.contact-us-container .box { border-right: 0; flex-wrap: wrap; align-items: center; justify-content: center; padding: 0; text-align: center;}
.box-address address,.box-contact a {margin-left: 0;}
.footer-logo.box a {margin-bottom: 30px;}
.contact-us-container .row { align-items: center;}
}


@media screen and (max-width: 767px) {

.navbar { background: #000; }
.contact-us-container .box { margin-bottom: 17px;}
.box-address { max-width: 340px; margin: 0 auto;}
.box-address i { margin-bottom: 5px;}
.footer-logo.box a {margin-bottom: 10px;}
   
}
@media screen and (max-width: 567px) {
.primary-footer .list { flex-direction: column;}
.primary-footer .list li { width: 100%;}
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.premium-loader-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
}

.logo-back-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0) 70%); /* यदि लोगो नीला है तो */
  border-radius: 50%;
  animation: logoBreathe 2.5s ease-in-out infinite;
}

.logo-shimmer-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden; 
  animation: logoBreathe 2.5s ease-in-out infinite;
}

.main-focused-logo {
  display: block;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08)); 
}

.logo-shimmer-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg); /* तिरछी लाइट */
  animation: premiumShine 2s infinite ease-in-out;
}

@keyframes premiumShine {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes logoBreathe {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .main-focused-logo {
    width: 110px; 
  }
  .logo-back-glow {
    width: 90px;
    height: 90px;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}
