*{ margin: 0; padding: 0;}

: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: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}
:root { 
  --background-color: #212529; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /*#0d83fd 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd; /* 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: #0d83fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

body{

    overflow-x: hidden; /* Horizontal scroll band & overflow: auto; /* Allow both vertical and horizontal scrolling */
    overflow-y: auto; /* Allow vertical scrolling */
    font-family: Arial, sans-serif;
    background: red;
    display: flex;
    flex-direction: column;
    width: 100%;

}


/* 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);
  }
}





        /* Header */
        header {
            background-color: #10A8D3;
            color: white;
            padding: 10px 20px;
            text-align: center;
		
			top: 0;
			z-index: 1000;
			box-shadow: 0 0px 1px rgba(0, 0, 0, 0.1);
            width: 100%;
            box-sizing: border-box;
            /* Flexbox settings */
            display: flex; /* Enables flexbox layout */
            align-items: center; /* Vertically centers the content */
            justify-content: center; /* Horizontally center the content */
            
            /* If you want to make the header fixed at the top of the page */
            position: fixed; /* Changes sticky to fixed and   position: sticky;  */
          
            left: 0;
            right: 0;
           


        }

        .header-container {
            background: var(--surface-color);
            border-radius: 50px;
            padding: 5px 25px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1140px; /* Adjust based on Bootstrap's default max-width */
            margin: 0 auto; /* Centers the container */
            padding-left: 15px; /* Adds Bootstrap-like padding */
            padding-right: 15px;
             /* Added properties */
            position: relative; /* Sets relative positioning */
            display: flex; /* Enables flexbox */
            align-items: center; /* Vertically centers content */
            justify-content: space-between; /* Spaces elements between */
          
        }




       .logo {
  line-height: 1;
  padding-left: 5px;
      /* Added properties */
    display: flex; /* Enables flexbox */
    align-items: center; /* Vertically centers content */
    margin-right: auto; /* Equivalent to Bootstrap's me-auto */
    margin-right: 0; /* Equivalent to Bootstrap's me-xl-0 (override for extra-large screens) */

}

/* Responsive fix for larger screens */
@media (min-width: 1200px) {
    .logo {
        margin-right: 0; /* Ensures no extra margin on extra-large screens */
    }
}


.logo img {
  max-height: 36px;
  margin-right: 8px;

}

/*Ya Button hai heading ma  Get Started k*/
.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}






/*As ma hm header-container, logo , btn-getstarted , navmenu ko responsive bna rahahain  */

/* ✅ Tablets and small desktops (max 1200px) */
@media (max-width: 1200px) {
  .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }



  .logo {
    order: 1;
  }

  .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .navmenu {
    order: 3;
  }
}



/* ✅ Medium Screens (max 768px) */
@media (max-width: 768px) {
  .header-container {
    margin: 5px;
    padding: 8px;
  }

  .btn-getstarted {
    padding: 5px 12px;
    margin: 0 5px 0 0;
  }

  .navmenu {
    font-size: 15px;
  }
}

/* ✅ Small Screens (max 480px) */
@media (max-width: 480px) {
  .header-container {
    margin: 0;
    padding: 5px;
  }

  .btn-getstarted {
    font-size: 12px;
    padding: 4px 10px;
    margin: 0 3px;
  }

  .navmenu {
    font-size: 14px;
  }
}

/* ✅ Extra Small Screens (max 320px) */
@media (max-width: 320px) {
  .header-container {
    margin: 0;
    padding: 3px;
  }

  .btn-getstarted {
    font-size: 11px;
    padding: 3px 8px;
    margin: 0 2px;
  }

  .navmenu {
    font-size: 13px;
  }
}


/* ✅ Extra Extra Small Screens (max 220px) */
@media (max-width: 220px) {
  .header-container {
    margin: 0;
    padding: 2px;
  }

  .logo {
    width: 50px; /* Agar logo bada ho toh chhota kar diya */
  }

  .btn-getstarted {
    font-size: 10px;
    padding: 2px 6px;
    margin: 0 1px;
  }

  .navmenu {
    font-size: 12px;
  }
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {

.navmenu {
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: center;
}
.navmenu ul {
    list-style: none;
    display: flex;
    gap: 15px;

    margin: 0;
    padding: 0;
    align-items: center;

}
  .navmenu ul li {
            position: relative;
        }


  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  
    text-decoration: none;
  }

  .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 li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }*/

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}






/* Navmenu - Mobile */
@media (max-width: 1199px) {


  .header-container {
    justify-content: flex-right; /* Ensures elements align properly */
    padding-right: 20px; /* Adjust padding */
  }








  .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;
  }

  .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;
    text-decoration: none;
    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), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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: 5px;
    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;
  }


.mobile-nav-active .header .btn-getstarted {
    margin-left: 2px !important;
}

}





/*   flex: 1;
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
    padding-top: 70px;*/



        /* Main Content */
        main {
            flex: 1; /* Makes the main content take up available space */
           
            text-align: center;
            background-color: #10A8D3; /*#f8f9fa*/
            width: 100%;
/*            box-sizing: border-box;*/
           

        }

        /* Footer */
        .footer {
            background-color: #10A8D3;
            color: white;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            position: relative;
            width: 100%;
            box-sizing: border-box;


        }


/* Media Queries for Small Screens */
@media (max-width: 480px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    header {
        padding: 10px;
    }

    main {
        padding: 10px;
    }

    .footer {
        padding: 15px 0;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    header {
        padding: 8px;
    }

    main {
        padding: 8px;
    }

    .footer {
        padding: 12px 0;
        font-size: 10px;
    }
}

@media (max-width: 220px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    header {
        padding: 6px; /* Adjust padding for very small screens */
    }

    main {
        padding: 6px; /* Adjust padding for very small screens */
    }

    .footer {
        padding: 10px 0; /* Reduce footer padding for very small screens */
        font-size: 8px; /* Smaller font size for very small screens */
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/




/*.hero {

  display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start; 
    min-height: 70vh; 
    background-color: #10A8D3;
    padding-top: 30px; 
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%; 
}
*/

.hero {
    display: flex;
    flex-direction: column; /* Stack vertically on small screens */
    align-items: center; /* Center content horizontally */
    justify-content: flex-start; /* Align content to the top */
    min-height: 100vh; /* Set minimum height for better appearance */
    background-color: #10A8D3;
    padding-top: 40px; /* Base padding */
    margin-top: 15px; /* Default top margin */
    box-sizing: border-box;
    width: 100%; /* Ensure full width */
    margin-bottom: 20px; /* Space below the hero section */
}

@media screen and (min-width: 399px) and (max-width: 480px) {
    .hero {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center content horizontally */
        justify-content: flex-start; /* Align to top */
        min-height: 90vh; /* Adjusted height for better appearance */
        background-color: #10A8D3;
        padding-top: 50px; /* Increased padding for proper spacing */
        margin-top: 30px; /* Space from top */
        box-sizing: border-box;

        width: 100%;
        margin-bottom: 20px; /* Space below */
    }
  }


@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero {


        flex-direction: row; /* Align content in a row for desktops */
        justify-content: space-around; /* Better spacing on desktops */
        align-items: center; /* Center content properly */
             padding-top: 25px; /* Increased padding */
        min-height: 80vh; /* Full viewport height */
        margin-top: 25px; /* More space on top */
    }
}


/* 📱 Smallest screens (250px - 300px) */
@media screen and (max-width: 300px) {
    .hero {
        padding-top: 98px; /* Reduced padding for tiny screens */
        margin-top: 98px; /* Minimal margin for small devices */
        min-height: 100vh; /* Smaller height for better fit */
    }
}

/* 📱 Very small devices (320px - 400px) */


/* 📱 Tablets & Mobile Desktops (768px and below) */
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 50px; /* More spacing for better alignment */
        margin-top: 20px;
        min-height: 85vh;
    }
}

/* 💻 Regular Desktops & Laptops (Above 1024px) */
@media screen and (min-width: 1024px) {
    .hero {
        flex-direction: row; /* Align content in a row for desktops */
        justify-content: space-around; /* Better spacing on desktops */
        align-items: center; /* Center content properly */
     padding-top: 25px; /* Increased padding */
        min-height: 80vh; /* Full viewport height */
        margin-top: 25px; /* More space on top */
    }
}








        .container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            align-items: flex-start; /* Align content to the top */
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            flex: 1;
            color: white;
            max-width: 500px;
        }

/*        .hero-content h4, .hero-content h1 {
            margin-bottom: 10px;
        }*/


        .animated-text {

              font-family: 'Roboto', sans-serif;
              font-size: 1rem;
           color: #fff;
             margin-left: 15px;
             margin-bottom: -40px;
            display: inline-block; /* To apply transform properly */
            animation: moveRight 4s ease-in-out 1, blink 1s step-start 2; /* Finite moveRight and blink animations */

        }


/* Keyframes for animation */
@keyframes moveRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .animated-text {
        font-size: 0.95rem;
        margin-left: 12px;
        margin-bottom: -35px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .animated-text {
        font-size: 0.9rem;
        margin-left: 10px;
        margin-bottom: -30px;
        animation: moveRight 3s ease-in-out 1, blink 0.8s step-start 2; /* Faster blink */
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .animated-text {
        font-size: 0.85rem;
        margin-left: 8px;
        margin-bottom: -25px;
        animation: moveRight 2.5s ease-in-out 1, blink 0.7s step-start 2;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .animated-text {
        font-size: 0.8rem;
        margin-left: 5px;
        margin-bottom: -20px;
        animation: moveRight 2s ease-in-out 1, blink 0.6s step-start 2;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .animated-text {
        font-size: 0.75rem;
        margin-left: 3px;
        margin-bottom: -15px;
        animation: moveRight 1.8s ease-in-out 1, blink 0.5s step-start 2;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .animated-text {
        font-size: 0.7rem;
        margin-left: 2px;
        margin-bottom: -10px;
        animation: moveRight 1.5s ease-in-out 1, blink 0.4s step-start 2;
    }
}





        

/* Title Text Styling */
.title-text {
  font-family: 'Roboto', sans-serif; /* Standard font for heading */
  color: #11395D; /* Default text color */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7); /* Soft shadow for text */
  font-size: 1.2rem; /* Standard font size */
  font-weight: bold; /* Make text bold for better visibility */
  text-transform: uppercase; /* Convert text to uppercase for a clean look */
  letter-spacing: 0.1em; /* Add space between letters for better readability */
  animation-name: example;
  animation-duration: 15s;
  margin-top: 10px;
  animation-iteration-count: infinite;
  margin-left: 15px;
}

/* Text Color Animation */
@keyframes example {
  0%   {color: white;}
  50%  {color: #f0f0f0;}
  100% {color: white;}
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .title-text {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
}

/* Small Tablets and Large Phones (480px and below) */
@media screen and (max-width: 480px) {
  .title-text {
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em;
    margin-left: 10px;
  }
}

/* Small Devices (400px and below) */
@media screen and (max-width: 400px) {
  .title-text {
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.07em;
    margin-left: 8px;
  }
}

/* Extra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
  .title-text {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    margin-left: 5px;
  }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
  .title-text {
    font-size: 1.3rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.04em;
    margin-left: 3px;
  }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
  .title-text {
    font-size: 1.1rem;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.03em;
    margin-left: 2px;
  }
}








/* Title Text Styling */
.footer-text {
  font-family: 'Roboto', sans-serif; /* Standard font for heading */
  color: #11395D; /* Default text color */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7); /* Soft shadow for text */
  font-size: 1.2rem; /* Standard font size for heading (48px) */
  font-weight: bold; /* Make text bold for better visibility */
  text-transform: uppercase; /* Convert text to uppercase for a clean look */
  letter-spacing: 0.1em; /* Add space between letters for better readability */
  animation-name: examplee;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  margin-left: 15px;
}

/* Text Color Animation */
@keyframes examplee {
  0%   {color: white;}
  50%  {color: #f0f0f0;}
  100%  {color: white;}
  150% {color: #f0f0f0;}

}

/* Responsive Design for Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .footer-text {
    font-size: 2rem; /* Adjusted for tablets */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
}

/* Responsive Design for Mobile Phones (480px and below) */
@media screen and (max-width: 480px) {
  .footer-text {
    font-size: 1.8rem; /* Adjusted for mobile */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em; /* Reduce spacing for better fit */
    margin-left: 10px;
  }
}

/* Ultra-Small Screens (320px and below) */
@media screen and (max-width: 320px) {
  .footer-text {
    font-size: 1.5rem; /* Smaller font for very small screens */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
    margin-left: 5px;
  }
}





.hero-content h4 {
    color: #FFFFFF;
    animation: slideInLeft 2s ease-in-out;
    max-width: 600px;
    padding: 0 20px; /* Add padding for equal spacing */
    text-align: justify; 
    font-family: 'Arial', sans-serif;
    
    font-size: 1.125rem; /* Standard size font (18px) */
    letter-spacing: 0.02em; /* Slightly more space between characters for readability */
    line-height: 1.5; /* Set line-height for proper spacing between lines */
}

@media screen and (max-width: 768px) {
    .hero-content h4 {
        font-size: 1rem; /* Slightly smaller font size on tablets (16px) */
        letter-spacing: 0.03em;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h4 {
        font-size: 0.9rem; /* Adjust font size for smaller screens (14px) */
        letter-spacing: 0.04em;
    }
}

/* Extra small screens adjustments */
@media screen and (max-width: 400px) {
    .hero-content h4 {
        font-size: 0.85rem; /* Smaller font for screens <= 400px (13.6px) */
        letter-spacing: 0.045em;
    }
}

@media screen and (max-width: 320px) {
    .hero-content h4 {
        font-size: 0.8rem; /* Even smaller font for <= 320px (12.8px) */
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 300px) {
    .hero-content h4 {
        font-size: 0.75rem; /* Minimum readable font for very small screens (12px) */
        letter-spacing: 0.055em;
    }
}

@media screen and (max-width: 250px) {
    .hero-content h4 {
        font-size: 0.7rem; /* Last level small adjustment for ultra small devices (11.2px) */
        letter-spacing: 0.06em;
    }
}



.hero-buttons a {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    color: var(--contrast-color);
    background: var(--accent-color);
    box-shadow: 0 4px 7px rgba(255, 255, 255, 0.2); /* White shadow */
}

.hero-buttons a:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 45%);
    box-shadow: 0 3px 7px rgba(255, 255, 255, 0.4); /* Stronger white shadow on hover */
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero-buttons {
        display: flex;
        justify-content: center; /* Centering buttons */
        flex-wrap: wrap; /* Ensures buttons don’t overflow */
        gap: 15px; /* Space between buttons */
        margin-top: 20px; /* Proper spacing from top */
    }

    .hero-buttons a {
        font-size: 16px; /* Slightly larger for better readability */
        padding: 10px 25px; /* Increase padding for better clickability */
        margin: 5px; /* Adjust margins to prevent overlapping */
        border-radius: 40px; /* Adjusted border radius */
        box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2); /* Improved shadow */
    }

    .hero-buttons a:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 35%);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5); /* Stronger hover effect */
    }
}


/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .hero-buttons a {
        font-size: 13px;
        padding: 7px 18px;
        margin-left: 20px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .hero-buttons a {
        font-size: 12px;
        padding: 6px 16px;
        margin-left: 15px;
        border-radius: 40px;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .hero-buttons a {
        font-size: 11px;
        padding: 5px 14px;
        margin-left: 12px;
        box-shadow: 0 3px 5px rgba(255, 255, 255, 0.15);
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .hero-buttons a {
        font-size: 10px;
        padding: 4px 12px;
        margin-left: 8px;
        border-radius: 35px;
        box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .hero-buttons a {
        font-size: 9px;
        padding: 3px 10px;
        margin-left: 5px;
        border-radius: 30px;
        box-shadow: 0 2px 3px rgba(255, 255, 255, 0.08);
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .hero-buttons a {
        font-size: 8px;
        padding: 2px 8px;
        margin-left: 3px;
        border-radius: 25px;
        box-shadow: 0 1px 2px rgba(255, 255, 255, 0.05);
    }
}



        .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin-left: 80px;
    margin-right: 30px;
    margin-top: 85px;
    align-self: flex-start; /* Ensure image stays at the top */
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .hero-image {
        max-width: 400px;
        margin-left: 40px;
        margin-right: 20px;
        margin-top: 60px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .hero-image {
        max-width: 350px;
        margin-left: 20px;
        margin-right: 15px;
        margin-top: 50px;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .hero-image {
        max-width: 300px;
        margin-left: 15px;
        margin-right: 10px;
        margin-top: 40px;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .hero-image {
        max-width: 250px;
        margin-left: 10px;
        margin-right: 5px;
        margin-top: 30px;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .hero-image {
        max-width: 220px;
        margin-left: 5px;
        margin-right: 3px;
        margin-top: 25px;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .hero-image {
        max-width: 200px;
        margin-left: 2px;
        margin-right: 2px;
        margin-top: 20px;
    }
}


        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .hero-content, .hero-image {
                max-width: 100%;
                text-align: center;
            }
            .hero-image {
               /* order: -1; /* Move image to the top */
/*                margin-bottom: 20px;*/

 order: 1; /* Move image to the bottom */
        margin-top: 20px;
            }
            .hero-image img {
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 10px;
            }
            .hero-content {
                padding: 10px;
            }
            .hero-image img {
                max-width: 200px;
            }
        }

        @media (max-width: 320px) {
            .hero-content h1 {
                font-size: 20px;
            }
            .hero-content h4 {
                font-size: 14px;
            }
            .hero-buttons a {
                padding: 8px 15px;
                font-size: 12px;
            }
            .hero-image img {
                max-width: 180px;
            }
        }


  .about {
      background-color: #ffffff; /* Green */
      color: #212529;
      padding: 10px 20px;

  }
    .aboutt {
      background-color: #10A8D3; /* Green */
      color: #212529;
      padding: 50px 20px;

  }


.aboutt-description {
    text-align: justify; /* Justifies text for even alignment */
    font-size: 1rem; /* Default size */
    color: #fff; /* Text color */
    line-height: 1.6; /* Improves readability */
    margin-bottom: 10px; /* Better spacing */
    padding: 0 10px; /* Ensures proper spacing on small screens */


}

/* 768px screens (Tablets) */
@media screen and (max-width: 768px) {
    .aboutt-description {
        font-size: 1rem; /* Maintain readability */
        line-height: 1.7;
        padding: 0 15px; /* Increase side padding */
    }
}

/* 480px screens (Small mobile devices) */
@media screen and (max-width: 480px) {
    .aboutt-description {
        font-size: 0.95rem; /* Slightly smaller text */
        line-height: 1.8;
        padding: 0 12px; /* Adjust side padding */
    }
}

/* 400px screens */
@media screen and (max-width: 400px) {
    .aboutt-description {
        font-size: 0.9rem; /* Reduce text size */
        line-height: 1.75;
        padding: 0 10px; /* Ensure text does not touch edges */
    }
}

/* 320px screens (Very small mobile devices) */
@media screen and (max-width: 320px) {
    .aboutt-description {
        font-size: 0.85rem; /* Slightly smaller for small screens */
        line-height: 1.7;
        padding: 0 8px; /* Reduce padding to fit small screens */
    }
}







/* Title Styling */
    .about-titlee {
      font-size: 2.5rem; /* Larger font size */
      font-weight: bold;
      color: #0d83fd; /* Dark color for the title */
      margin-bottom: 20px;
      line-height: 1.2;
      letter-spacing: 1px; /* Slightly increased letter spacing for readability */
    }



    .aboutt-description {
      font-size: 1.125rem; /* Slightly larger text for readability */
      line-height: 1.8; /* Increased line height for better readability */
      color: #fff; /* Lighter gray for text */
      margin-bottom: 30px; /* Space below the description */
      text-align: justify; /* Justify the text for a cleaner look */

    }

    /* Description Styling */
    .about-description {
      font-size: 1.125rem; /* Slightly larger text for readability */
      line-height: 1.8; /* Increased line height for better readability */
      color: #666; /* Lighter gray for text */
      margin-bottom: 30px; /* Space below the description */
      text-align: justify; /* Justify the text for a cleaner look */
    }




/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .about-description {
        font-size: 1rem; /* Slightly smaller for tablets */
        line-height: 1.7;
        margin-bottom: 25px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .about-description {
        font-size: 0.95rem; /* Adjust for mobile */
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .about-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .about-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .about-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .about-description {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}




    /* Responsive design for small screens */



  .about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #666;
  font-weight: 470; /* Slightly bold */
}

.about .feature-list li i {
    color: #0d83fd;
  font-size: 1rem;
}


@media (max-width: 992px) {
  .aboutt .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .aboutt .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .aboutt .image-wrapper .main-image {
    margin-left: 0;
  }
}

.aboutt .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .aboutt .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}








@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}


/* Experience Badge Floating Animation */
    .experience-badge {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: #0d83fd;

      padding: 15px 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      animation: floatUpDown 2s infinite ease-in-out;
    }



/* Floating animation */
@keyframes floatUpDown {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -15px); }
    100% { transform: translate(-50%, 0); }
}

.experience-badge h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.experience-badge span {
    color: #fff;
}

.experience-badge p {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #fff;
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .experience-badge {
        padding: 12px 20px;
        bottom: 15px;
        animation: floatUpDown 2.5s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 1.4rem;
    }
    .experience-badge p {
        font-size: 0.85rem;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .experience-badge {
        padding: 10px 18px;
        bottom: 12px;
        animation: floatUpDown 3s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 1.2rem;
    }
    .experience-badge p {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .experience-badge {
        padding: 8px 15px;
        bottom: 10px;
        animation: floatUpDown 3.5s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 1.1rem;
    }
    .experience-badge p {
        font-size: 0.75rem;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .experience-badge {
        padding: 6px 12px;
        bottom: 8px;
        animation: floatUpDown 4s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 1rem;
    }
    .experience-badge p {
        font-size: 0.7rem;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .experience-badge {
        padding: 5px 10px;
        bottom: 6px;
        animation: floatUpDown 4.5s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 0.95rem;
    }
    .experience-badge p {
        font-size: 0.65rem;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .experience-badge {
        padding: 4px 8px;
        bottom: 5px;
        animation: floatUpDown 5s infinite ease-in-out;
    }
    .experience-badge h3 {
        font-size: 0.9rem;
    }
    .experience-badge p {
        font-size: 0.6rem;
    }
}












/*--------------------------------------------------------------
# First Animation 6 Services
--------------------------------------------------------------*/

  .features-cardss {
      background-color: #f3f9ff; /* Green */
      color: black;
      padding: 50px 20px;
  }
  .hy {
  text-align: justify; /* Justifies text for even alignment */
  font-size: 1rem; /* Ensures readability */
  color: #fff; /* Slightly softer black for a professional look */
  line-height: 1.6; /* Improves spacing for better readability */
  margin-bottom: 10px;
}


/*Service heading*/
        .services-heading {
    text-align: center;
    color: #11395D;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 2rem; /* Default size for larger screens */
    margin: 20px 0;
}

/* Medium devices (tablets, small landscape phones) - max width 768px */
@media (max-width: 768px) {
    .services-heading {
        font-size: 1.8rem; /* Thoda size chhota kiya */
        text-shadow: 0.8px 0.8px 2px rgba(0, 0, 0, 0.6); /* Shadow thoda halka kiya */
    }
}

/* Small devices (portrait phones) - max width 480px */
@media (max-width: 480px) {
    .services-heading {
        font-size: 1.5rem; /* Aur chhota size */
        text-shadow: 0.5px 0.5px 1.5px rgba(0, 0, 0, 0.5); /* Shadow aur kam ki */
    }
}

/* Extra small devices (very small phones) - max width 320px */
@media (max-width: 320px) {
    .services-heading {
        font-size: 1.2rem; /* Sabse chhoti screens ke liye */
        text-shadow: 0.3px 0.3px 1px rgba(0, 0, 0, 0.4); /* Minimum shadow */
        padding: 0 10px; /* Thoda padding add kiya content ke liye */
    }
}

        /* Animation Keyframes */
        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInTop {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInBottom {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .animation-left {
            animation: slideInLeft 1s ease-in-out forwards;
        }

        .animation-top {
            animation: slideInTop 1s ease-in-out forwards;
        }

        .animation-right {
            animation: slideInRight 1s ease-in-out forwards;
        }

        .animation-bottom {
            animation: slideInBottom 1s ease-in-out forwards;
        }



.roww {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    
}

/* Medium devices (tablets, small landscape phones) - max width 768px */
@media (max-width: 768px) {
    .roww {
        gap: 15px; /* Gap ko slightly reduce kar diya */
        margin-bottom: 25px;
    }
}

/* Small devices (portrait phones) - max width 480px */
@media (max-width: 480px) {
    .roww {
        flex-direction: column; /* Items vertically stack ho jayenge */
        gap: 10px; /* Reduce gap for smaller screens */
        margin-bottom: 20px;
    }
}

/* Extra small devices (very small phones) - max width 320px */
@media (max-width: 320px) {
    .roww {
        gap: 5px; /* Gap aur reduce kiya */
        margin-bottom: 15px; /* Bottom margin aur kam ki */
    }
}


 .feature-boxx {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0; /* Initially hidden */
    width: 50%;
    max-width: 700px;
    min-width: 250px;
    margin: 0 auto; /* Center align horizontally */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Required for centering in small devices */
}

/* For medium devices (tablets, landscape phones) - max width 768px */
@media (max-width: 768px) {
    .feature-boxx {
        width: 70%; /* Reduce width for medium screens */
        max-width: 500px;
    }
}

/* For small devices (portrait phones) - max width 480px */
@media (max-width: 480px) {
    .feature-boxx {
        width: 90%; /* Almost full width for small screens */
        max-width: 300px;
        min-width: unset; /* Remove min-width to adapt to small screens */
    }
}

/* For extra small devices (very small phones) - max width 320px */
@media (max-width: 320px) {
    .feature-boxx {
        width: 95%; /* Full width for very small screens */
        max-width: 250px; /* Keep max-width small */
        padding: 15px; /* Reduce padding to fit better */
    }
}

        .feature-boxx .icon-container {
            font-size: 40px;
            color: #10A8D3;
            margin-bottom: 15px;
        }

        .feature-boxx h4 {
            font-size: 1.5rem;
            color: #11395D;
            margin-bottom: 10px;
        }

        .feature-boxx p {
            color: #555;
            margin-bottom: 15px;
        }

        .feature-boxx a {
            text-decoration: none;
            color: #fff;
            background-color: #11395D;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .feature-boxx a:hover {
            background-color: #0a2943;
           

        }



/*--------------------------------------------------------------
# Call To Action Mox
--------------------------------------------------------------*/

  .call-to-action {
      background-color: #ffffff; /* Green */
      color: black;
      padding: 50px 20px;
  }

.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}


/*--------------------------------------------------------------
# Clients 
--------------------------------------------------------------*/

  .clients {
      background-color: #ffffff; /* Green */
      color: black;
      padding: 50px 20px;
  }

.slider {
      height: 250px;
      margin: auto;
      position: relative;
      width: 90%;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .slide-track {
      display: flex;
      width: calc(250px * 18);
      animation: scroll 20s steps(18) infinite;
    }
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      10% {
        transform: translateX(0);
      }
      20% {
        transform: translateX(calc(-250px * 1));
  
      }
      30% {
        transform: translateX(calc(-250px * 1));
      
      }
      40% {
        transform: translateX(calc(-250px * 2));
      
      }
      50% {
        transform: translateX(calc(-250px * 2));
      
      }
      60% {
        transform: translateX(calc(-250px * 3));
      }
      70% {
        transform: translateX(calc(-250px * 3));
      }
      80% {
        transform: translateX(calc(-250px * 4));
      }
      90% {
        transform: translateX(calc(-250px * 4));
      }
      100% {
        transform: translateX(calc(-250px * 9));
      }
    }

    .slide {
      height: 200px;
      width: 250px;
      display: flex;
      align-items: center;
      padding: 25px;
      perspective: 100px;
      transition: transform 0.5s ease-in-out;
    }

    img {
      width: 100%;
      transition: transform 1s;
    }

    img:hover {
      transform: translateZ(20px);
    }

    .slider::before, .slider::after {
      background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 40%);
      content: '';
      height: 100%;
      position: absolute;
      width: 15%;
      z-index: 2;
    }

    .slider::before {
      left: 0;
      top: 0;
    }

    .slider::after {
      right: 0;
      top: 0;
      transform: rotateZ(180deg);
    }



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
    /* CSS Styles */
    .testimonials {
      background-color: #f3f9ff;
      color: black;
      padding: 50px 0;
    }


    .section-title h2 {
      font-size: 2rem; /* Adjust heading size */
      font-weight: bold;
      margin-bottom: 10px; /* Space below heading */
      color: #11395D; /* Darker text for better readability */
    }


    .testimonials .testimonial-item {
      background-color: #fff;
      box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
      position: relative;
      height: 100%;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .testimonials .testimonial-item:hover {
      transform: translateY(-10px);
    }

    .testimonials .testimonial-item .testimonial-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 6px solid #ffffff;
      float: left;
      margin: 0 15px 0 0;
    }

    .testimonials .testimonial-item h3 {
      font-size: 18px;
      font-weight: bold;
      margin: 15px 0 5px 0;
      text-align: left;
      color: #11395D;
    }

    .testimonials .testimonial-item h4 {
      font-size: 14px;
      color: #5A6B7A;
      margin: 0;
    }

    .testimonials .testimonial-item .stars {
       display: flex;
        justify-content: flex-start; /* Left alignment of stars */
      margin: 15px 0;
    }

    .testimonials .testimonial-item .stars i {
      color: #ffc107;
      margin: 0 1px;
      align-items: flex-start;
    }


.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}


    .testimonials .testimonial-item p {
      font-style: 'Playfair Display', serif;
      font-size: 16px;
      color: #11395D;
      margin: 55px 0 0 0;
      padding: 0;
      text-align: justify;
    }
  

/* Media Queries for Small Devices */
@media (max-width: 768px) {
  .testimonials {
    padding: 30px 0; /* Adjusting padding */
  }

  .testimonials .testimonial-item {
    padding: 20px; /* Reducing padding for smaller screens */
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 70px; /* Smaller image size for mobile */
    height: 70px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px; /* Smaller font size for mobile */
  }

  .testimonials .testimonial-item h4 {
    font-size: 12px; /* Smaller font size for mobile */
  }

  .testimonials .testimonial-item .stars {
    margin: 10px 0; /* Less margin for stars */
  }

  .testimonials .testimonial-item p {
    font-size: 14px; /* Smaller text for readability */
    margin: 40px 0 0 0; /* Adjusting margin */
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 20px; /* Smaller quote icons */
  }
}

/* Extra Small Devices (Portrait Phones, max-width: 480px) */
@media (max-width: 480px) {
  .testimonials .testimonial-item {
    padding: 15px; /* Even less padding for smaller screens */
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 60px; /* Even smaller image size for very small screens */
    height: 60px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 14px; /* Smaller heading font size */
  }

  .testimonials .testimonial-item h4 {
    font-size: 10px; /* Smaller subheading font size */
  }

  .testimonials .testimonial-item .stars {
    margin: 5px 0; /* Reduced margin for stars */
  }

  .testimonials .testimonial-item p {
    font-size: 12px; /* Smaller paragraph text */
    margin: 30px 0 0 0; /* Adjusting margin for mobile */
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 18px; /* Even smaller quote icons */
  }
}




/*--------------------------------------------------------------
# Second Features Card CSS same hai as lea nh add kr raha
--------------------------------------------------------------*/
/*Service heading*/
        .why-chose {
    text-align: center;
    color: #11395D;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 2rem; /* Default size for larger screens */
    margin: 20px 0;

}
.why-chosee h2 {
  font-size: 2rem; /* Adjust heading size */
  font-weight: bold;
  margin-bottom: 10px; /* Space below heading */
  color: #11395D; /* Darker text for better readability */
}



/* Medium devices (tablets, small landscape phones) - max width 768px */
@media (max-width: 768px) {
    .why-chose {
        font-size: 1.8rem; /* Thoda size chhota kiya */
        text-shadow: 0.8px 0.8px 2px rgba(0, 0, 0, 0.6); /* Shadow thoda halka kiya */
    }
}

/* Small devices (portrait phones) - max width 480px */
@media (max-width: 480px) {
    .why-chose {
        font-size: 1.5rem; /* Aur chhota size */
        text-shadow: 0.5px 0.5px 1.5px rgba(0, 0, 0, 0.5); /* Shadow aur kam ki */
    }
}

/* Extra small devices (very small phones) - max width 320px */
@media (max-width: 320px) {
    .why-chose {
        font-size: 1.2rem; /* Sabse chhoti screens ke liye */
        text-shadow: 0.3px 0.3px 1px rgba(0, 0, 0, 0.4); /* Minimum shadow */
        padding: 0 10px; /* Thoda padding add kiya content ke liye */
    }
}

.responsivee-img {
    width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
}

.rounded-img {
    border-radius: 15px; /* Adjust this value for more or less rounding */
}




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats{

      background-color: #ffffff;
      color: black;
      padding: 20px 0;

}


.stats .stats-item {
  padding: 20px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    /* CSS Styles */
    .contact {
      background-color: #f3f9ff;
      color: black;
      padding: 20px 0;
    }

.contactus h2 {
  font-size: 2rem; /* Adjust heading size */
  font-weight: bold;
  margin-bottom: 10px; /* Space below heading */
  color: #11395D; /* Darker text for better readability */
}


.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  text-align: left;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}


.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  text-align: left;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}














        .footer .footer-top {
            padding-top: 30px;
        }



.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}


        .footer .social-links {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center; /* Ensure the social icons are centered horizontally */
            

           
        }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #10A8D3; /* Icon background color */
            border-radius: 50%; /* Circular shape */
            box-shadow: 0 16px 18px rgba(0, 0, 0, 0.1); /* Light shadow */
            text-decoration: none;
            color: #ffffff; /* Default icon color */
            transition: all 0.3s ease;
        }

        .footer .social-links a:hover {
            background-color: white; /* Hover background color */
            color: #10A8D3; /* Icon color change on hover */
        }

        .footer .social-links i {
            font-size: 24px;
        }

/* Footer Heading (Justified) */
.footer h4 {
  font-size: 18px; /* Standard size */
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  text-align: justify; /* Justify the heading */
  width: 100%;


}

/* Footer Links Section */
.footer .footer-links {
  margin-bottom: 30px;
  text-align: justify; /* Justify all text */
}



/* Links List */
.footer .footer-links ul {
   font-family: Arial, sans-serif;
   
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  align-items: center;



}

/* List Items */
.footer .footer-links ul li {
  padding: 8px 0;
  display: block; /* Block-level for justification */
  width: 100%;
}

/* Links Style */
.footer .footer-links ul a {
  font-size: 16px;
  font-weight: normal;
  color: white;
  display: inline-block;
  text-align: justify; /* Justify text */
  width: 100%; /* Ensure full width */
  text-decoration: none;
  transition: color 0.3s ease-in-out;
   
}

/* Hover Effect */
.footer .footer-links ul a:hover {
  color: #FFD700;
}








        .footer .copyright {
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2); /* Light white border for line display */
        }
        .footer .copyright p {
            margin-bottom: 0;
        }
        .sitename {
            color: #fff; /* #FFD700 Gold color for premium look */
            font-weight: bold;
        }
	

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer .row {
                text-align: center;
            }
        }


    /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: black;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,#0d83fd, transparent 20%);
  color: #0d83fd;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

  .hyab {

        font-size: 1.125rem; /* Slightly larger text for readability */
      line-height: 1.8; /* Increased line height for better readability */
      color: #f2f2f2; /* Lighter gray for text */
      margin-bottom: 30px; /* Space below the description */
      text-align: justify; /* Justify the text for a cleaner look */
}


/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .hyab {
        font-size: 1rem; /* Reduce font size */
        line-height: 1.7;
        margin-bottom: 25px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .hyab {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .hyab {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .hyab {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .hyab {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .hyab {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}




    /* Description Styling */
    .about-descriptiona {
      font-size: 1.125rem; /* Slightly larger text for readability */
      line-height: 1.8; /* Increased line height for better readability */
      color: #f2f2f2; /* Lighter gray for text */
      margin-bottom: 30px; /* Space below the description */
      text-align: justify; /* Justify the text for a cleaner look */
    }



/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .about-descriptiona {
        font-size: 1rem; /* Slightly smaller */
        line-height: 1.7;
        margin-bottom: 25px;
    }
}

/* Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .about-descriptiona {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* Extra Small Devices (400px and below) */
@media screen and (max-width: 400px) {
    .about-descriptiona {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
}

/* Very Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .about-descriptiona {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}

/* Ultra Small Devices (300px and below) */
@media screen and (max-width: 300px) {
    .about-descriptiona {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
}

/* Tiny Screens (250px and below) */
@media screen and (max-width: 250px) {
    .about-descriptiona {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}
