/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(0, 0%, 100%);
  --black-color-light: hsl(0, 0%, 100%);
  --black-color-lighten: hsl(0, 0%, 100%); 
  --white-color: #000;
  --body-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
/* Make the logo image responsive */
.logo-image {
   max-width: 100%;
   height: auto;
   width: 126px; /* Adjust the size of the logo */
   margin-right: 10px;
}

/* Media Query for Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
   .logo-image {
      width: 80px; /* Adjust logo size on smaller screens */
      margin-right: 5px; /* Optional: Reduces margin on smaller screens */
   }
}

/* Media Query for Smaller Devices (max-width: 480px, typical mobile size) */
@media (max-width: 480px) {
   .logo-image {
      width: 60px; /* Further reduce logo size for very small screens */
   }
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: #007bff;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}
/*------------------------------footer---------------------------------------*/

 footer {
      background-color: hsl(0, 0%, 100%); /* White background */
      padding: 20px 0;
      font-family: Arial, sans-serif;
      box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    }

    .footer-container {
      width: 80%;
      margin: 0 auto;
    }

    /* Center: Follow Us and Icons on the Same Line */
    .footer-center {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; /* Space between center and bottom rows */
    }

    .footer-center p {
      margin-right: 15px; /* Add space between text and icons */
      font-size: 16px;
      color: hsl(220, 24%, 12%);
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      font-size: 24px;
      color: hsl(220, 24%, 12%);
      text-decoration: none;
    }

    .social-icon:hover {
      color: #007bff; /* Change color on hover */
    }

    /* Centered Row Navigation */
    .centered-row {
      list-style: none; /* Removes bullet points from the list */
      padding: 0; /* Removes padding */
      margin: 0; /* Removes margin */
      display: flex; /* Aligns the items in a row (horizontally) */
      justify-content: center; /* Centers the items horizontally */
      align-items: center; /* Centers the items vertically */
      height: 20vh; /* Makes the container take the full height of the viewport */
      margin-bottom: 20px; /* Adds spacing below the navigation */
    }

    .centered-row li {
      margin: 0 15px; /* Adds space between the list items */
    }

    .centered-row a {
      text-decoration: none; /* Removes underline from links */
      color: #000; /* Dark gray text color */
      font-size: 16px; /* Font size for the links */
      padding: 10px 15px; /* Adds padding to the links */
      display: inline-block; /* Makes the links block-level for padding to work */
      transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover transition */
    }

    /* Hover effect */
    .centered-row a:hover {
      color: #fff; /* Changes text color to white */
      background-color: #007BFF; /* Adds background color on hover */
      border-radius: 4px; /* Slightly rounds the corners */
    }

    /* Footer-bottom: Left and Right Sections in Same Row */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-left p {
      font-size: 14px;
      color: hsl(220, 24%, 12%);
    }

    .footer-right ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .footer-right ul li {
      display: inline;
      margin-left: 15px;
    }

    .footer-right ul li a {
      text-decoration: none;
      color: hsl(220, 24%, 12%);
      font-size: 14px;
    }

    .footer-right ul li a:hover {
      text-decoration: underline;
    }

    /* Media Query for Screens Smaller Than 768px */
    @media (max-width: 768px) {
      .footer-center {
        flex-direction: column; /* Stacks Follow Us and Icons vertically */
        text-align: center;
      }

      .footer-center p {
        margin-bottom: 10px; /* Space between text and icons */
      }

      .centered-row {
        flex-direction: column; /* Stacks items vertically */
        height: auto; /* Adjusts the height */
        margin-bottom: 10px; /* Adjusts spacing */
      }

      .centered-row li {
        margin: 10px 0; /* Adds space between links */
      }

      .footer-bottom {
        flex-direction: column; /* Stacks footer-left and footer-right vertically */
        text-align: center;
        align-items: center;
      }

      .footer-left,
      .footer-right {
        margin-bottom: 10px;
      }

      .footer-right ul li {
        display: block; /* Stacks the links in footer-right vertically */
        margin-left: 0;
        margin-top: 5px;
      }
    }
    
    /*----------------------------General----------------------------------------------------------*/
    p {
    margin-bottom: 0;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 26px;
    color: #000 !important;
    letter-spacing: 0.5px !important;
    font-family: 'Roboto', Sans-Serif;
}
   
 h1,h2,h3,h4,h5{
    font-family:'Monstserrat',Sans-serif;
}
  .divider {
       width: 80%;
            height: 2px;
            background: linear-gradient(to right, transparent, #808080, transparent); /* Grey color */
            margin: 20px auto;
    }
    /* Loading Screen Styling */
        #loadingScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff; /* White background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999; /* Ensure it stays on top */
            transition: opacity 0.5s ease-out; /* Smooth transition for fading out */
        }

        /* Dots Loading Animation */
        .dotss {
            display: flex;
            gap: 8px; /* Space between dots */
        }

        .dot1 {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #002578; /* Blue color */
            animation: dot-bounce 1.5s infinite ease-in-out;
            opacity: 0.6; /* Default opacity */
        }

        .dot1:nth-child(1) {
            animation-delay: 0s;
        }

        .dot1:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot1:nth-child(3) {
            animation-delay: 0.4s;
        }

        /* Dot bounce animation */
        @keyframes dot-bounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px);
                opacity: 1; /* Fully visible when the dot is bouncing */
            }
        }

        /* Main content styling (hidden initially) */
        #mainContent {
            display: block;
            margin-top: 20px;
            text-align: center;
        }
/*-----------------------------------------------------slider for happy customers---------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  background: #fff;
  margin-bottom:40px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
     /* Page Wrapper */
.pagee-wrapper {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;  /* Align items at the top */
    height: 100%;  /* Use full height */
    flex-wrap: wrap;  /* Allow wrapping of content */
    gap: 20px;
}

/* Left Section (Text) */
.landing-text {
    max-width: 500px;
    width: 100%;
    text-align: left;
    margin-right: 40px;
    
}

.landing-text h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #002578;
    font-family:'Montserrat',sans-serif;
    
}

.landing-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    font-family:'Roboto',sans-serif;
    text-align:justify;
}

/* Right Section (Form) */
.landing-form {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: center;
    border: 2px solid #007BFF;
    transition: all 0.3s ease;
    min-height: 450px;
}

/* Form Heading */
.landing-form h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #000;
    font-family:'Montserrat',sans-serif;
    font-weight:600;
}

.landing-form label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    text-align: left;
    font-size: 1.1em;
    color: #555;
}

.landing-form input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
    transition: border 0.3s ease;
}

.landing-form input:focus {
    border-color: #007BFF;
    outline: none;
}

.landing-form button {
    background-color: #007BFF;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    width: 100%;
    transition: background-color 0.3s ease;
}

.landing-form button:hover {
    background-color: #002578;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    /* Force stacking of elements in column direction on mobile */
    .pagee-wrapper {
        flex-direction: column !important;  /* Ensure elements are stacked vertically */
        justify-content: flex-start;  /* Align items at the top */
        align-items: center;  /* Center horizontally */
        padding: 20px 10px;  /* Add padding on smaller screens */
    }

    /* Adjust the form to take full width on mobile */
    .landing-form {
        max-width: 100% !important;  /* Ensure form takes full width */
        margin-bottom: 20px;  /* Add margin between sections */
        min-height: auto;  /* Allow height to adjust based on content */
    }

    /* Adjust text layout */
    .landing-text {
        max-width: 100% !important;  /* Ensure text section takes full width */
        margin-right: 0;  /* Remove any margin */
        text-align: center;  /* Center the text */
    }

    .landing-text h3 {
        font-size: 1.8em;  /* Reduce size of title */
    }

    .landing-text p {
        font-size: 1.1em;  /* Adjust paragraph text size */
    }
}
