 /* header-1 s */
        :root {
            --primary-blue: #0247b4;
            --secondary-blue: #3bb9f3;
            --dark-blue: #012a6b;
            --light-blue: #e6f4ff;
            --accent-blue: #5bc0ff;
            --dark-text: #333;
            --light-text: #fff;
            --gray-bg: #f8f9fa;
            --gradient: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            --gradient-reverse: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            --menu-bg: rgba(255, 255, 255, 0.98);
            --menu-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f5f9ff 0%, #e6f2ff 100%);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
		
		
		/* banner-1 */
       /* Hero Slider */
        /* General Styles for the Slider */

        
nav ul li.active > a {
    color: white;
}

nav ul li.active > a:before {
    left: 0;
}

nav ul li.active > a {
    background: var(--gradient);
    box-shadow: 0 5px 15px rgba(2, 71, 180, 0.3);
    border-radius: 8px;
	color:white!important;
}

/* banner */
.banner-div1 .carousel-caption {
  top: 55%;

  transform: translateY(-50%);
 }
  .banner-div1 .carousel-caption .subhead-text {
    font-size: 35px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
     text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Subtle downward shadow */
     font-family: "Poppins", sans-serif;
     }
  .banner-div1 .carousel-caption .head-text {
    font-size: 70px;
    color: #fff;
    letter-spacing: -0.6px;
    line-height: 90px;
    text-transform: capitalize;
    font-weight: 600; 
    font-family: "Poppins", sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* Subtle shadow */
  }
.banner-div1 .carousel-control-prev, .banner-div1 .carousel-control-next {
  opacity: 1;
 }
.banner-div1 .carousel-control-prev-icon {
  background-image: url(../images/banner-left-arrow.png);
  width: 40px;
  height: 40px; }
.banner-div1 .carousel-control-next-icon {
  background-image: url(../images/banner-right-arrow.png);
  width: 40px;
  height: 40px; }

.tx-head {
  margin: 0;
  font-size: 17px;
  color: #cf9d5d;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400; }

.tx-subhead {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
  text-transform: uppercase;
  color: #996017;
  margin-bottom: 20px; }













        /* Header & Navigation - ENHANCED STYLING */
       header {
    background-color: var(--menu-bg);
    box-shadow: var(--menu-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}
        .header.scrolled {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }
        
      .header-container {
    display: flex;
   
    align-items: center;
    padding: 0px 0;
    transition: all 0.4s ease;
}
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 100px;
            
        }
       .logo-icon img {
    width: 118px;
    transition: all 0.4s ease;
}
        
        .logo-text {
            display: flex;
            flex-direction: column;

        }
        .logo-text a{
            text-decoration: none;
        }
        
       .logo-text h1 {
    font-size: 24px;
    transition: all 0.4s ease;
    color: var(--primary-blue);
    line-height: 1.0;
    margin-bottom: -1px;
}
        
        .logo-text span {
    font-size: 12px;
    transition: all 0.4s ease;
        font-size: 12px;
    color: var(--secondary-blue);
                font-weight: 600;
    letter-spacing: 1px;
}
/*  */
/* ===== When Scrolled ===== */
header.scrolled .header-container {
    padding: 10px 0;
}

header.scrolled .logo-icon img {
    width: 70px;
}

header.scrolled .logo-text h1 {
    font-size: 18px;
    margin-left: -30px;
    margin-top: 8px;
}

header.scrolled .logo-text span {
    font-size: 10px;
    margin-left: -30px;
}

        /* Enhanced Navigation Styles */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
            margin-left: 8px;
        }
        
        nav ul li a {
            text-decoration: none!important;
            color: var(--dark-text)!important;
            font-weight: 600!important;
            transition: all 0.3s!important;
            padding: 12px 15px!important;
            display: flex!important;
            align-items: center!important;
            position: relative!important;
            border-radius: 8px!important;
            overflow: hidden!important;
        }
        
        nav ul li a i {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        nav ul li a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            transition: all 0.4s;
            z-index: -1;
            border-radius: 8px;
        }
.carousel-control-next, .carousel-control-prev {
	top:96px!important;
}
        
        nav ul li a:hover {
            color: white!important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(2, 71, 180, 0.3);
        }
        
        nav ul li a:hover:before {
            left: 0;
        }
        
        nav ul li a:hover i {
            transform: rotate(180deg);
        }
        
        /* Enhanced Dropdown Menu */
      .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-text);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
    border-top: 3px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
}
        
   .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    color: var(--dark-text);
    border-radius: 0;
}

.dropdown-menu li a:before {
    display: none;
}

.dropdown-menu li a i {
    margin-right: 10px!important;
    font-size: 14px!important;
    color: var(--primary-blue)!important;
}

.dropdown-menu li:hover {
    background-color: var(--light-blue)!important;
}

.dropdown-menu li:hover a {
    color: var(--primary-blue)!important;
    padding-left: 25px!important;
    transform: none!important;
    box-shadow: none!important;
}
       /* Mobile menu button styles */
.mobile-menu-btn {
    display: none; /* Initially hidden on larger screens */
    background: var(--gradient);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 1002; /* Ensure button stays above the menu */
    position: fixed; /* Keep the button fixed in the top right corner */
    top: 20px; /* Distance from top */
    right: 20px; /* Distance from right */
    transition: transform 0.4s ease; /* Smooth transition for button movement */
    box-shadow: 0 5px 15px rgba(2, 71, 180, 0.3);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

/* Close button for mobile menu */
.close-menu-btn {
    position: absolute;
    top: 20px;  /* Distance from the top */
    right: 20px;  /* Distance from the right */
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 1002;  /* Ensure the button is above the menu */
    display: none;  /* Hidden by default */
}

.close-menu-btn:hover {
    color: red; /* Change color on hover */
}

/* Make the close button visible when the menu is active */
nav.active .close-menu-btn {
    display: block; /* Show the close button when menu is active */
}
        
/* Ensure the navigation menu is displayed inline with Flexbox */
.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox for horizontal layout */
    align-items: center; /* Center align the items vertically */
	margin-left: 15px;
		
}

/* Style the individual menu items */
.nav-menu li {
    margin: 0 6px; /* Adjust spacing between menu items */
}

/* "Get a Quote" Button */
.nav-cta {
    margin-left: auto; /* Push the "Get a Quote" button to the far right */
}


/* Button Styles */
 .btn8 {
    padding: 14px 35px;
    font-size: 14px;
    background: var(--gradient);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(2, 71, 180, 0.4);
    position: relative;
    overflow: hidden;
	 float:right;
}

/* Hover effects */
.btn8:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.btn8:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 71, 180, 0.5);
}

.btn8:hover:before {
    left: 100%;
}


/* Modal (Popup) Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
    padding-top: 60px;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 8px;
    font-weight: bold;
}

form input,
form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
	width:100%;
}
form textarea {height:100px;}

.submit-button {
    padding: 10px;
    background-color: #0d4179;
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #34abeb; /* Adjust this as per your colors */
}
        .modal-content h2{
                text-align: center;
    padding-bottom: 20px;
    color: #083a74;
        }
        
        /* header-1 e */
     
        /* Footer-1 s*/
       
         .footer1 {
            --primary-blue: #0247b4;
            --secondary-blue: #3bb9f3;
            --accent-yellow: #ffde59;
            --dark-blue: #001a4a;
            --gradient-start: #0247b4;
            --gradient-end: #3bb9f3;
        }
      
        .footer {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, #5472b3 100%);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            /* background: linear-gradient(90deg, var(--accent-yellow), var(--secondary-blue), var(--accent-yellow)); */
           background: linear-gradient(90deg, #ffde59, #3bb9f3, #ffde59);
           
        }
        
        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 185, 243, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 222, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(2, 71, 180, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-yellow);
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        
        .footer-section:hover h3::after {
            width: 70px;
        }
        
        .footer-section.about p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        /* Links */
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
            transform: translateX(0);
            transition: transform 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(10px);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            display: flex;
            align-items: center;
            /* gap: 12px; */
            padding: 0px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        .footer-links li a::before {
            content: "◇";
            margin-right: 10px;
            font-size: 20px;
            color: #ffde59;
            }
        /* Contact Info */
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 22px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        


        .contact-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-yellow);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .contact-info li:hover .contact-icon {
            background: var(--accent-yellow);
            color: var(--dark-blue);
            transform: rotate(10deg) scale(1.1);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: white;
        }
        
        .contact-text a, .contact-text p {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--accent-yellow);
        }
        
        /* Social Media */
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--secondary-blue);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-icon i {
            position: relative;
            z-index: 1;
        }
        
        .social-icon:hover {
            transform: translateY(-8px) rotate(5deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon:hover::before {
            opacity: 1;
        }
        
        /* Social Media Specific Colors */
        .social-icon.facebook:hover { background: #1877F2; }
        .social-icon.twitter:hover { background: #1DA1F2; }
        .social-icon.linkedin:hover { background: #0077B5; }
        .social-icon.instagram:hover { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(2, 71, 180, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            /* background: linear-gradient(135deg, var(--accent-yellow), #ffcc00); */

            background: linear-gradient(135deg,   #ffde59, #ffde59, #ffcc00);
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 12px 30px rgba(255, 222, 89, 0.4);
        }
        
        .back-to-top i {
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover i {
            transform: translateY(-3px);
        }
        
        /* Footer Bottom */
        /* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright, .powered-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.company-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}


        
        .footer-menu {
            display: flex;
            gap: 30px;
        }
        
        .footer-menu a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        
        .footer-menu a:hover {
            color: var(--accent-yellow);
        }
        
        .footer-menu a:hover::after {
            width: 100%;
        }
    
        /* Animation for footer sections */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-section {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
    
           /* Footer-1 e */

       
        
        @keyframes rotateFadeIn {
            0% {
                transform: rotate(-10deg) scale(0.8);
                opacity: 0;
            }
            40% {
                transform: rotate(2deg) scale(1.05);
                opacity: 0.7;
            }
            60% {
                transform: rotate(-1deg) scale(0.98);
                opacity: 0.9;
            }
            80% {
                transform: rotate(0.5deg) scale(1.01);
                opacity: 0.95;
            }
            100% {
                transform: rotate(0) scale(1);
                opacity: 1;
            }
        }
        
        .slide img {
            width: 100%;
           height: 100%;
           /*  object-fit: cover; */
            display: block;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 170px 180px;
            color: white;
            opacity: 0;
            z-index: 2;
        }
        
        /* Different content animations for each slide */
        .slide[data-index="0"].active .slide-content {
            animation: fadeInUp 0.8s ease 0.5s forwards;
        }
        
        .slide[data-index="1"].active .slide-content {
            animation: slideInLeft 0.9s ease 0.6s forwards;
        }
        
        .slide[data-index="2"].active .slide-content {
            animation: bounceIn 1s ease 0.4s forwards;
        }
        
        @keyframes fadeInUp {
            0% {
                transform: translateY(40px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInLeft {
            0% {
                transform: translateX(-100px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes bounceIn {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            70% {
                transform: scale(0.95);
                opacity: 0.9;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .slide-content h2 {
            font-size: 3.8rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.1;
            max-width: 850px;
        }
        
        .slide-content p {
            font-size: 1.5rem;
            max-width: 650px;
            line-height: 1.7;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
            font-weight: 300;
            margin-bottom: 30px;
        }
        
        .slide-content .cta-button {
            display: inline-block;
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        /* Different button styles for each slide */
        .slide[data-index="0"] .cta-button {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
        }
        
        .slide[data-index="1"] .cta-button {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            color: white;
        }
        
        .slide[data-index="2"] .cta-button {
            background: linear-gradient(135deg, #11998e, #38ef7d);
            color: white;
        }
        
        .slide-content .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }
        
        /* Navigation Dots */
        .dots-container {
            position: absolute;
            bottom: 190px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 16px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 241, 241, 0.6);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .dot.active {
            background-color: #000;
            transform: scale(1.4);
            box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
        }
        
        .dot:hover {
            background-color: #333;
            transform: scale(1.3);
        }
        
        /* Different dot animations for each slide */
        .dot[data-index="0"].active::after {
            content: '';
            position: absolute;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            border: 2px solid #ffde59;
            top: -4px;
            left: -4px;
            animation: pulse 2s infinite;
        }
        
        .dot[data-index="1"].active::after {
            content: '';
            position: absolute;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            border: 2px solid #ffde59;
            top: -4px;
            left: -4px;
            animation: pulse 2s infinite 0.5s;
        }
        
        .dot[data-index="2"].active::after {
            content: '';
            position: absolute;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            border: 2px solid #ffde59;
            top: -4px;
            left: -4px;
            animation: pulse 2s infinite 1s;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.4;
            }
            100% {
                transform: scale(1);
                opacity: 0.8;
            }
        }
        
        /* Navigation Arrows */
        /* .arrow {
            position: absolute;
            top: 38%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.85);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
        }
        
        .arrow:hover {
            background-color: #000;
            transform: translateY(-50%) scale(1.15);
            border-color: rgba(255, 255, 255, 0.8);
        }
        
        .arrow-left {
            left: 50px;
        }
        
        .arrow-right {
            right: 50px;
        }
        
        .arrow i {
            font-size: 1.6rem;
        }
        
        
        .slide-counter {
            position: absolute;
            top: 50px;
            right: 50px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            z-index: 10;
            backdrop-filter: blur(8px);
        }
        
       
        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            z-index: 1;
        } */
        
       
        
        /* Animation info panel */
        .animation-info {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 0 20px;
            text-align: center;
        }
        
        .animation-info h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: #222;
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .animations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .animation-card {
            background: white;
            border-radius: 15px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .animation-card:hover {
            transform: translateY(-10px);
        }
        
        .animation-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .animation-card p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .animation-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .animation-card:nth-child(1) .animation-icon {
            color: #ff7e5f;
        }
        
        .animation-card:nth-child(2) .animation-icon {
            color: #6a11cb;
        }
        
        .animation-card:nth-child(3) .animation-icon {
            color: #11998e;
        }
        /* hero-section-1 e */

        /* about section-1 s */
		
		
		
		
        /* about */
          section {
            padding: 40px 0;
        }
        
        /* About Section */
        .about-section {
          /*  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;*/
        }
        
        
        
        .about-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 2;
        }
        
        .section-header .subtitle {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-header .subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            line-height: 1.2;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .section-header .highlight {
            color: var(--secondary-blue);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        /* About Content */
        
        
        .about-title {
            font-size: 2.2rem;
            color: var(--dark-blue);
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .about-title span {
            color: var(--secondary-blue);
            position: relative;
            display: inline-block;
        }
        
        .about-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            /* background-color: rgba(255, 222, 89, 0.3); */
            z-index: -1;
        }
        
        .about-description {
            color: #555;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 35px;
        }
        
        .about-description strong {
            color: var(--primary-blue);
            font-weight: 600;
        }
         /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .feature-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(2, 71, 180, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(2, 71, 180, 0.1);
        }
        
        .feature-item:hover::before {
            width: 100%;
            opacity: 0.1;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--light-bg), #eef5ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-item h4 {
            font-size: 1.2rem;
            color: var(--dark-blue);
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .feature-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* About Visual */
        .about-visual {
            position: relative;
        }
        
        .visual-main {
            position: relative;
            z-index: 2;
        }
        
        .tech-circle {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: 50%;
            position: relative;
            margin: 0 auto;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(2, 71, 180, 0.2);
        }
        
        .tech-circle::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            background: white;
            border-radius: 50%;
            z-index: 1;
        }
        
        .circle-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            width: 80%;
        }
        
        .circle-content h3 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .circle-content p {
            color: var(--secondary-blue);
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.5s ease;
            width: 180px;
        }
        
        .floating-element:nth-child(1) {
            left: 10%;
            right: -20px;
            animation: float1 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(2) {
          bottom: 41%;
    left: -30px;
            animation: float2 7s ease-in-out infinite;
        }
        
        .floating-element:nth-child(3) {
            top: 50%;
            right: -40px;
            animation: float3 8s ease-in-out infinite;
        }

         .floating-element:nth-child(4) {
          top: 84%;
    right: 94px;
            animation: float3 9s ease-in-out infinite;
        }
        
        .floating-element i {
            font-size: 1.8rem;
            color: var(--secondary-blue);
        }
        
        .floating-element span {
            font-weight: 600;
            color: var(--dark-blue);
            font-size: 0.95rem;
        }
        
        .floating-element:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(2, 71, 180, 0.15);
            background: var(--gradient);
        }
        
        .floating-element:hover i,
        .floating-element:hover span {
            color: white;
        }
        
        @keyframes float1 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        @keyframes float2 {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }
        
        @keyframes float3 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        
        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gradient);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(2, 71, 180, 0.2);
            margin-top: 0px;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(2, 71, 180, 0.3);
            background: #0a56bd;
        }
        
        .cta-button i {
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
       
          /* about section-1 e */
		  
		  /* contact page-1 s*/
		   /* Contact Page new  s*/
         /* Hero Section */
        .hero-section1 {
             background: linear-gradient(135deg, rgb(135 62 62 / 0%) 0%, #03A9F4 100%), url(../images/contact-us-banner.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 80px;
            text-align: center;

        }

           .hero-section3 {
             background: linear-gradient(194deg, rgb(135 62 62 / 0%) 0%, #29a8e1 100%), url(../images/paper-roll-banner1.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 30px;
            text-align: center;

        }


            .hero-section4 {
             background: linear-gradient(194deg, rgb(135 62 62 / 0%) 0%, #29a8e1 100%), url(../images/note-counting-banner2.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 30px;
            text-align: center;

        }
          .hero-section5 {
             background: linear-gradient(194deg, rgb(135 62 62 / 0%) 0%, #29a8e1 100%), url(../images/ecr-billing-banner3.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 30px;
            text-align: center;

        }
         .hero-section6 {
             background: linear-gradient(194deg, rgb(135 62 62 / 0%) 0%, #29a8e1 100%), url(../images/thermal-pos-banner4.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 30px;
            text-align: center;

        }
.hero-section2 {
    background: linear-gradient(135deg, rgba(135, 62, 62, 0.6) 0%, rgba(3, 169, 244, 0.6) 100%), url('<?php echo $background_image; ?>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content1 h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);  /* Increased shadow for better visibility */
    margin-top: 38px;
}

.hero-tagline1 {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);  /* Added shadow to the tagline as well */
}

.accent-line {
    height: 4px;
    width: 120px;
    background-color: #ffde59;
    margin: 0 auto 40px;
    border-radius: 2px;
}


        
        .cta-button1 {
            display: inline-block;
            background-color: #ffde59;
            color: #0247b4;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(255, 222, 89, 0.3);
        }
        
        .cta-button1:hover {
            background-color: #0247b4;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 71, 180, 0.3);
        }
        
         /* Contact Content Section */
        .contact-content {
            padding: 100px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
     
        
        
        .contact-intro {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.8;
        }
		.section-title4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-top: 60px;
	background: linear-gradient(135deg, var(--primary-blue), #0247b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	  transition: transform 0.3s ease;
        }
        
        .section-title4:hover {
            transform: translateX(10px);
        
}

       
        /* Contact Details */
        .contact-details {
            background: linear-gradient(135deg, #0247b4, #3bb9f3);
            border-radius: 15px;
            padding: 40px;
            color: white;
            box-shadow: 0 15px 30px rgba(2, 71, 180, 0.15);
		 transition: transform 0.3s ease;
        }
        
        .contact-details:hover {
            transform: translateX(10px);
        
}
        .contact-details h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        
        .contact-details h3 i {
            margin-right: 12px;
            color: #ffde59;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background-color: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.3rem;
            color: white;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            opacity: 0.9;
        }
        
        .contact-text a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: #ffde59;
        }
        
        /* Map Section */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 525px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
      
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll1 {
            opacity: 7;
          
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll1.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Contact Page new  e*/  
		/* contact page-1 e */
		  
		 /* testimonial page-1 s */
		 /* Testimoial Page new  s*/

        /* Main Content */
        .testimonial-page-container {
           margin-top: 200px;
        }

        /* Testimonial Grid */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .testimonial-card1 {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 35px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card1:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card1.featured {
            border: 2px solid #ffde59;
            grid-column: span 2;
        }

        .rating {
            color: #ffde59;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .quote-icon {
            color: #3bb9f3;
            font-size: 2.5rem;
            line-height: 1;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
            flex-grow: 1;
            font-size: 1.05rem;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid #ffde59;
            flex-shrink: 0;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            color: #0247b4;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .client-details p {
            color: #666;
            font-size: 0.95rem;
        }

        .testimonial-date {
            color: #94a3b8;
            font-size: 0.85rem;
            margin-top: 5px;
        }

      

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(10px) rotate(-5deg);
            }
            75% {
                transform: translateY(-15px) rotate(3deg);
            }
        }

       
			  
		 /* testimonial page-1 e */
		 
		     /* Client Page-1  s*/
           
        .logos-section {
           margin-top: 140px;
          
        }
        
        .logos-title {
            font-size: 2.5rem;
    font-weight: 800;
    margin-bottom:40px;
    line-height: 1.2;
    position: relative;
 
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-blue), #0247b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
	text-align:center;

        }
		
        
        .logos-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
		
        
        .logo-card {
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            box-shadow: 0 8px 20px rgba(2, 71, 180, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(59, 185, 243, 0.2);
        }
        
        .logo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(2, 71, 180, 0.15);
            border-color: #ffde59;
        }
        
        .logo-img {
            max-width: 220px;
            
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s ease;
        }
        
        .logo-card:hover .logo-img {
            filter: grayscale(0%);
        }
        
       
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll2 {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll2.animated {
            opacity: 1;
            transform: translateY(0);
        }
          /* Client Page-1 e*/
		  
 /* service Page-1 s*/
        .divservice{
             --primary-blue: #0247b4;
            --secondary-blue: #3bb9f3;
            --accent-yellow: #ffde59;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #666;
        }
       
       
        /* Services Section */
        .services-intro {
            text-align: center;
            padding: 20px 0 40px;
        }
        
        .section-title2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-yellow);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
		.two-columns {
    column-count: 2;
    column-gap: 30px;
}

.two-columns li {
    break-inside: avoid;   /* Prevent breaking items in half */
    padding: 8px 0;
    display: flex;
    align-items: center;
}
        
        .section-subtitle2 {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 130px;
            padding: 40px 0 50px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary-blue);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card.yellow-border {
            border-top-color: var(--accent-yellow);
        }
        
        .service-card.blue-border {
            border-top-color: var(--secondary-blue);
        }
        
        .service-header {
            background-color: var(--light-bg);
            padding: 25px;
            display: flex;
            align-items: center;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon i {
            font-size: 30px;
            color: var(--primary-blue);
        }
        
        .service-title {
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-list {
            list-style: none;
        }
        
        .service-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .service-list li:last-child {
            border-bottom: none;
        }
        
        .service-list i {
            color: var(--secondary-blue);
            margin-right: 10px;
            font-size: 14px;
        }
        
        /* services Page-1  e*/
		
		 /* About Page-1  s*/
        /* Story Section */
        .section-title5 {
            text-align: left;
            margin-bottom: -51px;
            color: #0247b4;
            position: relative;
            font-size: 1.8rem;
        }
        
        .section-title5:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, #0247b4, #3bb9f3);
            margin: 10px 0 30px;
            border-radius: 3px;
        }
        
        .story-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
           
        }
        
        .story-text {
            flex: 1;
            min-width: 300px;
          ;
        }
        .story-text1 {
            flex: 1;
            min-width: 300px;
            margin-top: 160px;
        }
        .story-text h3 {
            font-size: 28px;
          padding-top: 40px;
                color: #4aaee8;
            position: relative;
           
          
        }
        
         
       /* .story-text h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #0247b4, #3bb9f3);
            border-radius: 2px;
        }*/
        
        .story-text p {
            margin-bottom: 18px;
            font-size: 17px;
            line-height: 1.7;
            color: #555;
            position: relative;
               text-align: justify;
        }
        
        
        /* .story-text p:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #3bb9f3;
            font-weight: bold;
        } */
          .story-text1 p {
            margin-bottom: 18px;
            font-size: 17px;
            line-height: 1.7;
            color: #555;
            position: relative;
            padding-left: 20px;
        }

        #story p{
            text-align: justify;
            font-size: 16px;

        }
        
        .story-text1 p:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #3bb9f3;
            font-weight: bold;
        }
        
        .story-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        /* Main image container with overlay boxes */
        .image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            height: 500px;
        }
        
        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .image-container:hover .story-img {
            transform: scale(1.05);
        }
        
        /* Image border effect */
        .image-container:before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(45deg, #0247b4, #3bb9f3, #ffde59, #3bb9f3, #0247b4);
            background-size: 400% 400%;
            border-radius: 18px;
            z-index: -1;
            animation: gradientBorder 3s ease infinite;
        }
        
        /* Overlay boxes on image */
        .overlay-box {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.8);
            max-width: 250px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Top-right box */
        .top-right-box {
            top: 30px;
            right: 30px;
            border-left: 4px solid #0247b4;
            animation-delay: 0.3s;
        }
        
        /* Bottom-left box */
        .bottom-left-box {
            bottom: 30px;
            left: 30px;
            border-left: 4px solid #ffde59;
            animation-delay: 0.6s;
        }
        
        /* Box content styling */
        .box-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .box-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0247b4 0%, #3bb9f3 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-size: 18px;
        }
        
        .bottom-left-box .box-icon {
            background: linear-gradient(135deg, #ffde59 0%, #ffb347 100%);
        }
        
        .box-header h4 {
            font-size: 16px;
            color: #0247b4;
            font-weight: 600;
        }
        
        .bottom-left-box .box-header h4 {
            color: #333;
        }
        
        .box-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        /* Stats in bottom-left box */
        .box-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
        }
        
        .box-stat {
            text-align: center;
            flex: 1;
        }
        
        .box-stat-value {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: #0247b4;
            margin-bottom: 3px;
        }
        
        .bottom-left-box .box-stat-value {
            color: #e67e22;
        }
        
        .box-stat-label {
            font-size: 11px;
            color: #666;
            font-weight: 500;
        }
        
        /* Top-right box specific */
        .top-right-box .box-content p {
            font-size: 13px;
        }
        
        /* Animations */
        @keyframes gradientBorder {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes floatBox {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .overlay-box:hover {
            animation: floatBox 2s ease-in-out infinite;
        }
        
      
        /* About Page-1 e*/
		 /* paper Page-1 s*/
		 .div-abt{
			 margin-top:40px;
			 }
/* Solutions Section */
        .solutions-section {
            padding: 70px 0;
            background-color: white;
        }
        
        .section-title3 {
            text-align: center;
            margin-bottom: 30px;
            color: #0247b4;
            position: relative;
            font-size: 2.5rem;
        }
        
        .section-title3:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, #0247b4, #3bb9f3);
            margin: 15px auto;
            border-radius: 3px;
        }
        
        .solutions-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .solution-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(2, 71, 180, 0.08);
            transition: all 0.4s ease;
            border-left: 6px solid #3bb9f3;
        }
        
        .solution-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(2, 71, 180, 0.15);
            border-left-color: #ffde59;
        }
        
        .solution-card h3 {
            color: #0247b4;
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }
        
        .solution-card h3 i {
            margin-right: 15px;
            color: #3bb9f3;
            font-size: 1.8rem;
        }
        
        .solution-list {
            list-style-type: none;
        }
        
        .solution-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #d1e3ff;
            position: relative;
            padding-left: 40px;
        }
        
        .solution-list li:before {
          content: '✓';
    position: absolute;
    left: 11px;
    color: #ffde59;
    font-weight: bold;
    background-color: #0247b4;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
        }
        
        /* Products Section */
        .products-section1 {
            padding: 70px 0;
            /* background-color: #f8fafc; */
            border-top: 1px solid #e1efff;
            border-bottom: 1px solid #e1efff;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 35px;
        }
        
        .product-card1 {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(2, 71, 180, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        /* Creative Hover Effects */
        .product-card1:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(2, 71, 180, 0.15);
        }
        
        .product-card1:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /* background: linear-gradient(to right, #0247b4, #3bb9f3, #ffde59); */
            z-index: 2;
        }
        
        .product-card1:hover:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(59, 185, 243, 0.05), rgba(255, 222, 89, 0.05));
            z-index: 1;
        }
        
        .product-image {
            height: 220px;
            background-color: #f0f8ff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* border-bottom: 3px solid #3bb9f3; */
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card1:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content1 {
            padding: 25px;
            position: relative;
            z-index: 3;
            background-color: white;
        }
        
        .product-content1 h3 {
            color: #0247b4;
            margin-bottom: 18px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .product-content1 h3 i {
            margin-right: 12px;
            color: #3bb9f3;
            font-size: 1.6rem;
        }
        
        .product-features {
            list-style-type: none;
        }
        
        .product-features li {
            padding: 8px 0;
            padding-left: 35px;
            position: relative;
        }
        
        /* Creative Icons for Bullet Points */
        .product-features li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-color: #f0f8ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0247b4;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        /* Different creative icons for each product */
        .product-card1:nth-child(1) .product-features li:before {
           content: "→";
        }
        
        .product-card1:nth-child(2) .product-features li:before {
           content: "→";
        }
        
        .product-card1:nth-child(3) .product-features li:before {
            content: "→";
        }
        
        .product-card1:nth-child(4) .product-features li:before {
          content: "→";
        }
        
        .product-card1:nth-child(5) .product-features li:before {
           content: "→";
        }
        
        .product-card1:nth-child(6) .product-features li:before {
           content: "→";
        }
        
        .product-card1:nth-child(7) .product-features li:before {
           content: "→";
        }
 .product-card1:nth-child(8) .product-features li:before {
           content: "→";
        }
        
        

  
/* paper Page-1 e*/

 /* home page product section-1 s*/
          /* Products Section */
          .testi-carousel {
  padding-top: 20px;
  padding-bottom: 10px;
}
.testi-carousel .owl-prev {
  background: url("../images/amenities-left-arrow.png") left center no-repeat !important;
  height: 44px;
  position: absolute;
  top: 32%;
  width: 44px;
  z-index: 1000;
  left: 0%;
  cursor: pointer;
  color: transparent;
  /* transform: rotate(-90deg); */
}

.testi-carousel .owl-next {
  background: url("../images/amenities-right-arrow.png") right center no-repeat;
  height: 44px;
  position: absolute;
  top: 32%;
  width: 44px;
  z-index: 1000;
  right: 0%;
  cursor: pointer;
  color: transparent;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}
.am-project1 a {
  text-decoration: none;
}
.am-project1 h4 {
  margin: 0;
  font-size: 17px;
  text-align: center;
  z-index: 2;
  color: #2b2a28;
  bottom: 20px;
  padding: 10px 20px;
  line-height: 22px;
  font-weight: 600;
  font-family: "Comfortaa", serif;
}
.am-project1 img {
  width: 100%;
  border-radius: 25px;
}
.am-project1 img:hover {
  box-shadow: 0 0 12px rgb(171 121 56);
}
.am-project1 h4:hover {
  color: #9b610d;
}


          /*  */
      
        
        .products-section{
             --primary-blue: #0247b4;
            --accent-yellow: #fcdd55;
            --light-blue: #3bb9f3;
            --dark-blue: #012a6d;
            --light-bg: #f0f7ff;
        }
       .section-title {
            font-size: 3.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow), var(--light-blue));
            border-radius: 4px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(2, 71, 180, 0.1);
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(2, 71, 180, 0.15);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
        }

        .product-icon {
            
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
        }
		
		
		.product-icon img{
			   width: 100%;
    height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
		}

        .product-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230247b4' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .product-icon i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: 1;
            filter: drop-shadow(0 5px 10px rgba(2, 71, 180, 0.2));
        }

        .product-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .product-content h3 {
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-content p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
            flex-grow: 1;
        }

        /* NEW GRADIENT BUTTON DESIGNS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            transition: opacity 0.4s ease;
            opacity: 1;
            border-radius: 50px;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            border-radius: 50px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        .btn:hover::before {
            opacity: 0;
        }

        .btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        /* Product Card Button - Gradient 1 */
        .btn-product {
            color: white;
            background: transparent;
        }

        .btn-product::before {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        }

        .btn-product::after {
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
        }

        .services-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .services-subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .services-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            background: var(--accent-yellow);
            top: 10%;
            left: 5%;
            animation: float 15s infinite ease-in-out;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            background: var(--light-blue);
            bottom: 15%;
            right: 10%;
            animation: float 12s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

     

		
	 /* home page product section-1 e*/	
	 
	 /*home page client section-1  s*/
	 
	     .testimonial-section {
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
			
        }

        .section-title1 {
            text-align: center;
            margin-bottom: 60px;
            color: #0247b4;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title1:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3bb9f3, #ffde59);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: white;
            border-radius: 52px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #0247b4, #3bb9f3);
        }

        .quote-icon {
            color: #3bb9f3;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid #ffde59;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            color: #0247b4;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .client-details p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Enhanced Background Elements */
        .background-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 8s infinite ease-in-out;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #0247b4, #3bb9f3);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #3bb9f3, #ffde59);
            top: 70%;
            left: 85%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #ffde59, #0247b4);
            top: 40%;
            left: 90%;
            animation-delay: 4s;
        }

        .bg-shape {
            position: absolute;
            opacity: 0.03;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #0247b4, #ffde59);
            top: 80%;
            left: 10%;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 6s;
        }

        .shape-2 {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #3bb9f3, #0247b4);
            top: 20%;
            left: 80%;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation-delay: 8s;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(10px) rotate(-5deg);
            }
            75% {
                transform: translateY(-15px) rotate(3deg);
            }
        }

      
		/*home page client section-1  s*/
		
		/*home page hero section-1 s*/
		  /* new section */
         .hero-section {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
            overflow: hidden;
        }
        
        /* Background Image with Transparency */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(2, 71, 180, 0.7), rgba(1, 26, 74, 0.8)),
                url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.7; /* Makes background more transparent */
            z-index: 1;
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.95); /* More opaque content background */
            backdrop-filter: blur(5px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeIn 1s ease-out;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Welcome Badge */
        .welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #0247b4, #3bb9f3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            margin-bottom: 40px;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 8px 25px rgba(2, 71, 180, 0.3);
            animation: slideInLeft 0.8s ease-out;
        }
        
        .welcome-badge i {
            color: #ffde59;
            animation: spin 3s linear infinite;
        }
        
        /* Main Title */
        .main-title {
        
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #001a4a;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .main-title span {
            color: #0247b4;
            position: relative;
            display: inline-block;
        }
        
        .main-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            /* background: rgba(255, 222, 89, 0.3); */
            z-index: -1;
            border-radius: 5px;
        }
        
        /* Tagline */
        .tagline {
            font-size: 1.4rem;
            color: #0247b4;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.6;
            padding: 0 20px;
        }
        
        /* CTA Buttons */
        .cta-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .primary-btn {
            background: linear-gradient(135deg, #0247b4, #3bb9f3);
            color: white;
            box-shadow: 0 10px 30px rgba(2, 71, 180, 0.25);
        }
        
        .secondary-btn {
            background: white;
            color: #0247b4;
            border: 2px solid #0247b4;
            box-shadow: 0 8px 20px rgba(2, 71, 180, 0.15);
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(2, 71, 180, 0.3);
        }
        
        .primary-btn:hover {
            background: linear-gradient(135deg, #3bb9f3, #0247b4);
        }
        
        .secondary-btn:hover {
            background: #0247b4;
            color: white;
        }
        
        .cta-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .cta-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }
        
        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #0247b4;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        
        .scroll-indicator a:hover {
            color: #3bb9f3;
        }
        
        .scroll-indicator i {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #0247b4;
            animation: bounce 2s infinite;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
       
  

	 	/*home page hero section-1 e*/
		 	/*home page logo  section-1 e*/
 
        .brand-section {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
             margin-top: 60px;
            
        }
        
        .brand-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /* background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981); */
        }
        
      
        
        .section-header2{
             text-align: center;
            margin-bottom: 60px;
            color: #0247b4;
            font-size: 2.5rem;
            position: relative;
        }

            .section-header2:after {
              content: '';
            display: block;
            width: 80px;
            height: 4px;
                background: linear-gradient(to right, #3bb9f3, #ffde59);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
       
        .brand-carousel-container {
            position: relative;
            padding: 0 60px;
        }
        
        .brand-carousel {
            display: flex;
            overflow: hidden;
            scroll-behavior: smooth;
            border-radius: 16px;
            padding: 20px 0;
        }
        
        .brand-slide {
            min-width: 25%;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .brand-slide:hover {
            transform: translateY(-10px);
        }
        
        
        .brand-logo {
            width: 223px;
            height: 200px;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #f1f5f9;
        }
        
        .brand-logo:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            transform: scale(1.05);
        }
        
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
        }
        
        .brand-logo:hover img {
            filter: grayscale(0%);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color:#42bcf3;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .carousel-btn:hover {
            background: #0247b4;
            color: white;
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .carousel-btn.prev {
            left: 0;
        }
        
        .carousel-btn.next {
            right: 0;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 12px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #0247b4;
            transform: scale(1.3);
        }
        
        .dot:hover {
            background: #94a3b8;
        }
        
       
 	/*home page logo section-1 e*/


/* note counting page-1 s */	

.note-count{
    margin-top: 50px;
    margin-bottom: 30px;

}
 .notecls {
             --primary-blue: #0247b4;
            --secondary-blue: #3bb9f3;
            --accent-yellow: #ffde59;
            --accent-yellow: #ffde59;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --gray-text: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

      /* Container for centering content */
        .product-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Counting Animated Title */
        .counting-page-title {
            text-align: center;
            padding: 2rem 0;
           
            margin-bottom: 0rem;
            border-radius: 10px;
            
        }

        .counting-title-text {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .counting-title-text::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 5px;
            background: linear-gradient(to right, var(--accent-yellow), var(--secondary-blue));
            border-radius: 5px;
        }

        .counting-title-letters span {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .counting-title-text:hover .counting-title-letters span {
            opacity: 1;
            transform: translateY(0);
        }

        .counting-title-subtext {
            font-size: 1.2rem;
            color: var(--gray-text);
            max-width: 800px;
            margin: 1.5rem auto 0;
        }

        /* Counting Category Filter Buttons */
        .counting-category-filter {
            padding: 1.5rem 0;       
            margin-bottom: 2rem;
            border-radius: 10px;
            
        }

        .counting-filter-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }

        .counting-filter-btn {
            padding: 0.8rem 1.8rem;
            border: 2px solid var(--secondary-blue);
            background-color: var(--white);
            color: var(--primary-blue);
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            font-size: 1rem;
        }

        .counting-filter-btn:hover {
            background-color: #f0f7ff;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .counting-filter-btn.active {
            background-color: var(--secondary-blue);
            color: var(--white);
            border-color: var(--secondary-blue);
            box-shadow: 0 5px 15px rgba(59, 185, 243, 0.3);
        }

        .counting-filter-btn i {
            margin-right: 8px;
        }

        /* Counting Products Grid - Custom without Bootstrap */
        .counting-products-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -4px; /* Negative margin for 8px gap */
        }

        .counting-product-column {
            width: 100%;
            padding: 0 4px; /* 4px each side = 8px gap between columns */
          
        }

        /* Two column layout for desktop */
       
        .counting-product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
            opacity: 1;
            transform: translateY(0);
            height: 100%;
        }

        .counting-product-card.hidden {
            display: none;
        }

        .counting-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .counting-product-image-container {
            height: 350px;
            overflow: hidden;
            position: relative;
        }

        .counting-product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .counting-product-card:hover .counting-product-image-container img {
            transform: scale(1.05);
        }


        .counting-product-content {
            padding: 1.8rem;
        }

        .counting-product-model {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f1f5f9;
        }

        .counting-product-model i {
            color: var(--accent-yellow);
            margin-left: 10px;
        }

        .counting-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 1.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-blue);
            display: flex;
            align-items: center;
        }

        .counting-section-title i {
            margin-right: 10px;
            color: var(--secondary-blue);
        }

        .counting-features-list, .counting-description-content {
            padding-left: 0;
            margin-bottom: 0;
        }

        .counting-features-list li, .counting-description-content li {
            margin-bottom: 0.8rem;
            padding-left: 1.8rem;
            position: relative;
            list-style-type: none;
        }

        .counting-features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-blue);
            font-weight: bold;
        }

        .counting-description-content li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .counting-specifications {
            background-color: #f1f5f9;
            padding: 1.2rem;
            border-radius: 10px;
            margin-top: 1.5rem;
        }

        .counting-spec-row {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .counting-spec-row:last-child {
            border-bottom: none;
        }

        .counting-spec-label {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .counting-spec-value {
            color: var(--gray-text);
            text-align: right;
        }

        /* Animation for title letters */
        .counting-title-text:hover .counting-title-letters span:nth-child(1) { transition-delay: 0.05s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(2) { transition-delay: 0.1s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(3) { transition-delay: 0.15s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(4) { transition-delay: 0.2s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(5) { transition-delay: 0.25s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(6) { transition-delay: 0.3s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(7) { transition-delay: 0.35s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(8) { transition-delay: 0.4s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(9) { transition-delay: 0.45s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(10) { transition-delay: 0.5s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(11) { transition-delay: 0.55s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(12) { transition-delay: 0.6s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(13) { transition-delay: 0.65s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(14) { transition-delay: 0.7s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(15) { transition-delay: 0.75s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(16) { transition-delay: 0.8s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(17) { transition-delay: 0.85s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(18) { transition-delay: 0.9s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(19) { transition-delay: 0.95s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(20) { transition-delay: 1s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(21) { transition-delay: 1.05s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(22) { transition-delay: 1.1s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(23) { transition-delay: 1.15s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(24) { transition-delay: 1.2s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(25) { transition-delay: 1.25s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(26) { transition-delay: 1.3s; }
        .counting-title-text:hover .counting-title-letters span:nth-child(27) { transition-delay: 1.35s; }

     

/* note counting page-1 e */	
/* thermal page-1 s */

.notecls-thermal{
	--primary-blue: #0247b4;
            --secondary-blue: #3bb9f3;
            --accent-yellow: #ffde59;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --gray-text: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
			
}
.thermaldiv{
	margin-top:50px;
}

/* Custom Container */
        .thermal-container {
            width: 100%;
            margin-top:0px;
			margin-bottom:40px;
           
            padding: 0 15px;
        }

        /* Compact Title */
        .thermal-page-title {
            text-align: center;
            padding: 1.2rem 0;
          
            margin-bottom: 1.2rem;
            border-radius: 6px;
            
        }

        .thermal-title-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.6rem;
            position: relative;
            display: inline-block;
        }

        .thermal-title-text::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-yellow), var(--secondary-blue));
            border-radius: 3px;
        }

        .thermal-title-letters span {
            display: inline-block;
            opacity: 0;
            transform: translateY(12px);
            transition: var(--transition);
        }

        .thermal-title-text:hover .thermal-title-letters span {
            opacity: 1;
            transform: translateY(0);
        }

        .thermal-title-subtext {
            font-size: 1.2rem;
            color: var(--gray-text);
       
            margin: 0.8rem auto 0;
            padding: 0 10px;
        }

        /* Custom Grid System */
        .thermal-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .thermal-col-6 {
            width: 100%;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        /* Two column layout for desktop */
       

        /* Small Image Container */
        .thermal-image-container {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: auto;
            margin-bottom: 1rem;
        }

        .thermal-image-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .thermal-product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .thermal-image-container:hover .thermal-product-image {
            transform: scale(1.02);
        }

        /* Compact Content Card */
        .thermal-content-card {
            background: var(--white);
            border-radius: 6px;
            padding: 1.2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            
            margin-bottom: 1rem;
        }

        .thermal-content-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        /* Compact Card Title */
          .thermal-card-title1 {
                color: var(--primary-blue);
    font-size: 25px;
    padding: 20px 0px;
          }

        .thermal-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid var(--secondary-blue);
            display: flex;
            align-items: center;
        }

        .thermal-card-title i {
            margin-right: 6px;
            color: var(--accent-yellow);
            font-size: 1.1rem;
        }

        .thermal-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.8rem;
        }

        .feature-icon {
            color: var(--secondary-blue);
            margin-right: 8px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-content strong {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Lists */
        .thermal-description-list, .thermal-features-list {
            padding-left: 0;
            margin-bottom: 0;
            font-size: 1.2rem;
        }

        .thermal-description-list li, .thermal-features-list li {
            margin-bottom: 0.6rem;
            padding-left: 1.2rem;
            position: relative;
            list-style-type: none;
        }

        .thermal-description-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .thermal-features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-blue);
            font-weight: bold;
        }

        /* Sub sections */
        .thermal-sub-section {
            margin-top: 1rem;
            padding-left: 0.8rem;
            border-left: 2px solid var(--accent-yellow);
        }

        .thermal-sub-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.4rem;
        }

        /* Animation for title letters */
        .thermal-title-text:hover .thermal-title-letters span:nth-child(1) { transition-delay: 0.05s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(2) { transition-delay: 0.1s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(3) { transition-delay: 0.15s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(4) { transition-delay: 0.2s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(5) { transition-delay: 0.25s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(6) { transition-delay: 0.3s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(7) { transition-delay: 0.35s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(8) { transition-delay: 0.4s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(9) { transition-delay: 0.45s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(10) { transition-delay: 0.5s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(11) { transition-delay: 0.55s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(12) { transition-delay: 0.6s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(13) { transition-delay: 0.65s; }
        .thermal-title-text:hover .thermal-title-letters span:nth-child(14) { transition-delay: 0.7s; }
/* thermal page-1 e */	
	
	
	/* mobile responsive s*/
    /* Responsive Design */
@media (max-width: 1200px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.slide-content h2 {
font-size: 46px;
}
.slide-content h2 {
font-size: 3.2rem;
}

.slide-content p {
font-size: 1.3rem;
}
.hero-banner {
height: 75vh;
min-height: 550px;
}

.slide-content {
padding: 50px 60px;
}
.about-container {
gap: 60px;
}
.tech-circle {
width: 350px;
height: 350px;
}
}

@media (max-width: 768px) {
       .footer {
                padding: 60px 0 25px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
            
            .footer-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .main-content h1 {
                font-size: 2.8rem;
            }
             .mobile-menu-btn {
        display: block; /* Make button visible on small screens */
        z-index: 1002; /* Ensure button stays above the menu */
    }

    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Initially off-screen */
        width: 320px;
        height: 100vh;
        background-color: var(--light-text);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: all 0.4s;
        padding-top: 100px;
        z-index: 1001; /* Menu behind the button */
    }

    /* When menu is active, it slides in */
    nav.active {
        right: 0;
    }

    /* Move the mobile menu button off-screen when menu is active */
    nav.active .mobile-menu-btn {
        right: -100px; /* Move the button off-screen when menu opens */
    }

    /* Navigation List Styles */
    nav ul {
        flex-direction: column;
        padding: 0 30px;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 18px 15px;
        justify-content: space-between;
        border-radius: 0;
    }

    nav ul li a:before {
        display: none;
    }

    nav ul li a:hover {
        color: var(--primary-blue);
        transform: none;
        box-shadow: none;
    }

    nav ul li.active > a { 
        border-radius: 0px;
    }

    /* Dropdown Menu */
    .dropdown-menu {
        display: none; /* Start by hiding the dropdown completely */
        position: absolute;
        top: 100%; /* Position dropdown directly below parent */
        left: 0;
        width: 100%;
        background-color: var(--gray-bg);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Optional: Add shadow for dropdown */
        border-top: 1px solid #ddd; /* Optional: Border for dropdown */
        z-index: 100; /* Ensure dropdown is above other content */
            min-width: 263px;
    }

    /* When the dropdown is active (clicked) */
    .dropdown.active .dropdown-menu {
        display: block; /* Show the dropdown when active */
    }

    /* Dropdown Items */
    .dropdown-menu li {
        padding: 10px 20px; /* Space out menu items */
        border-bottom: 1px solid #eee; /* Optional: Border between items */
        display: flex; /* Use flexbox to align items horizontally */
    align-items: center;
    }

    .dropdown-menu li:last-child {
        border-bottom: none; /* Remove border on last item */
    }

    /* Close the dropdown when clicking outside */
    nav.active .dropdown-menu {
        display: none; /* Ensure dropdown stays hidden when not active */
    }

    .dropdown-menu li a {
    display: flex; /* Use flexbox for the anchor tag */
    align-items: center; /* Vertically center the text and icon */
    text-decoration: none; /* Remove text underline */
    color: inherit; /* Inherit the color */
}

.dropdown-menu li a i {
    margin-right: 10px; /* Add a small gap between icon and text (optional) */
}

    /* Mobile Modal (For "Get Quote" form) */
    .nav-cta {
        margin: 20px 0 0 0;
        text-align: center;
        display: none;
    }

    /* Call-to-Action Button */
    .nav-cta {
        margin: 20px 0 0 0;
        text-align: center;
    }
            .slide-content h2 {
                font-size: 34px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
             .slide-content h2 {
                font-size: 2.4rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
                max-width: 500px;
            }
            
            .hero-banner {
                height: 65vh;
                min-height: 450px;
            }
            
            .slide-content .cta-button {
                padding: 14px 32px;
                font-size: 1.1rem;
            }
            
            .dots-container {
                bottom: 40px;
            }
            
            .slide-counter {
                top: 30px;
                right: 30px;
            }
                section {
                padding: 70px 0;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .about-title {
                font-size: 1.8rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 60px auto 0;
            }
            
            .floating-element {
                width: 160px;
                padding: 12px;
            }
              /* .header-container {
                flex-direction: column;
                padding: 15px 0;
            } */
             .banner-div1{
                margin-top: 92px;
             }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .hero-content1 h1 {
                font-size: 2.2rem;
            }
            
            .hero-tagline1 {
                font-size: 1.1rem;
            }
            
            
            .contact-details {
                padding: 30px;
            }
              .testimonial-page-title {
                font-size: 2.5rem;
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
          
            
            .bg-circle, .bg-shape {
                display: none;
            }
          h1 {
                font-size: 2.2rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .logos-container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .client-categories {
                grid-template-columns: 1fr;
            }
            
            .partnership-title {
                font-size: 2rem;
            }
            
            .section-title2 {
                font-size: 2rem;
            }
			  .two-columns {
        column-count: 1;
    }
      .section-title5 {
                font-size: 1.8rem;
            }
            
            .story-text h3 {
                font-size: 24px;
            }
                 
          
            
            
            .image-container {
                height: 350px;
            }
            
            .overlay-box {
                max-width: 200px;
                padding: 15px;
            }
            
            .top-right-box {
                top: 20px;
                right: 20px;
            }
            
            .bottom-left-box {
                bottom: 7px;
                left: 20px;
                top: 7px;
            }
      
            
            .box-header h4 {
                font-size: 15px;
            }
            
            .box-content p {
                font-size: 13px;
            }
            
            .box-stat-value {
                font-size: 18px;
            }
            
           .solution-card, .product-card1 {
                min-width: 100%;
            }
            
            .products-container {
                grid-template-columns: 1fr;
            }
            
             .section-title {
                font-size: 2.5rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .services-section {
                padding: 50px 30px;
            }
            
            .services-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .services-buttons .btn {
                width: 80%;
            }
               .testimonial-container {
                flex-direction: column;
                align-items: center;
            }
            
            .bg-circle, .bg-shape {
                display: none;
            }
              .hero-section {
                min-height: 600px;
            }
            
            .main-title {
                font-size: 2.8rem;
            }
            
            .tagline {
                font-size: 1.2rem;
                padding: 0 10px;
            }
            
            .welcome-badge {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .cta-btn {
                padding: 16px 35px;
                font-size: 1rem;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
                .brand-section {
                padding: 40px 20px;
            }
            
            .section-header2 h2 {
                font-size: 2.2rem;
            }
            
          
            .brand-carousel-container {
                padding: 0 50px;
            }
            
            .brand-slide {
                min-width: 50%;
            }
            
            .carousel-btn {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }
             .counting-title-text {
                font-size: 2.2rem;
            }
            
            .counting-product-image-container {
                height: 280px;
            }
            
            .counting-product-model {
                font-size: 1.5rem;
            }
            
            .counting-filter-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
              .thermal-title-text {
                font-size: 1.4rem;
            }
            
            .thermal-product-image {
                height: 200px;
            }
            
            .thermal-content-card {
                padding: 1rem;
            }
            
            .thermal-card-title {
                font-size: 1.1rem;
            }
            
            body {
                padding: 10px;
            }
             nav.main-nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 20px;
        position: absolute;
        top: 80px;
        left: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        z-index: 999;
    }

    nav.main-nav ul.active {
        display: flex !important;
    }

   

        }
           @media (min-width: 768px) {
            .counting-product-column {
                width: 50%; /* Two columns on desktop */
            }
              .thermal-col-6 {
                width: 50%;
            }

        }

@media (max-width: 480px) {
.main-content h1 {
font-size: 2.2rem;
}

.footer {
padding: 50px 0 20px;
 text-align: center;
}
.footer-links li a{
    text-align: center;

}


.social-media {
justify-content: center;
}
.section-title {
font-size: 2rem;
}

.product-icon {
height: 180px;
}

.product-icon i {
font-size: 4.5rem;
}
.main-title {
font-size: 2.3rem;
}

.tagline {
font-size: 1.1rem;
}

.hero-content {
padding: 40px 20px;
}

.welcome-badge {
font-size: 0.9rem;
}

.hero-bg {
background-attachment: scroll; /* Remove fixed on mobile */
}
.div-abt {
margin-top: 0px;
}
.section-title5 {
font-size: 1.6rem;
}
.testimonial-section {
margin-top: -70px;
padding: 0px;
padding-bottom: 25px;
}
}

@media (max-width: 992px) {
.about-content {
flex-direction: column;
}
.services-grid {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
h1 {
font-size: 2.7rem;
}

.logos-container {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.products-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.main-title {
font-size: 2.1rem;
}

.tagline {
font-size: 1.3rem;
}

.hero-content {
padding: 50px 30px;
margin: 0 20px;
}
.story-container {
flex-direction: column;
gap: 40px;
}

.story-text, .story-visual {
width: 100%;
}
.story-text1, .story-visual {
width: 100%;
}

.image-container {
height: 400px;
}

.slide-content {
margin-left: 5%;
}
.contact-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.contact-info1 {
padding-right: 0;
}

.hero-content1 h1 {
font-size: 2.8rem;
}

.slide-content h2 {
font-size: 40px;
}
.about-container {
grid-template-columns: 1fr;
gap: 70px;
}
.slide-content h2 {
font-size: 2.8rem;
}

.slide-content p {
font-size: 1.2rem;
max-width: 550px;
}

.hero-banner {
height: 70vh;
min-height: 500px;
}

.slide-content {
padding: 40px;
}

.arrow {
width: 50px;
height: 50px;
top: 14%;
}

.arrow-left {
left: 30px;
}

.arrow-right {
right: 30px;
}

.slide-counter {
top: 40px;
right: 40px;
}

.about-content {
padding-right: 0;
text-align: center;
}

.features-grid {
max-width: 600px;
margin: 40px auto 0;
}

.tech-circle {
width: 300px;
height: 300px;
}

.circle-content h3 {
font-size: 2rem;
}

.stats-container {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
.slide-content {
padding: 20px;
}

.section-header2 {
    font-size: 2.2rem;

}
.brand-slide {
min-width: 100%;
}
.counting-filter-btn {
padding: 0.6rem 1rem;
font-size: 0.9rem;
}
.thermal-title-text {
font-size: 1.2rem;
}

.thermal-title-subtext {
font-size: 1.0rem;
}
.logos-title { 
margin-top: 260px;
font-size: 1.8rem;
}
.logo-img {
max-width:none;
margin-left: auto;
margin-right: auto;
display: block;
width: 100%;

}
.logos-section {
margin-top: -66px;
}
.divservice {
margin-top: -77px;
}
.section-title3 {

font-size: 2.2rem;
}

.thermal-product-image {
height: 180px;
}

.thermal-row {
margin: 0 -10px;
}

.thermal-col-6 {
padding: 0 10px;
}

.counting-products-grid {
margin: 0; /* Remove gap on mobile */
}

.counting-product-column {
padding: 0; /* Remove padding on mobile */
width: 100%; /* Single column on mobile */
}

.brand-carousel-container {
padding: 0 40px;
}

.carousel-btn {
width: 44px;
height: 44px;
font-size: 1.2rem;
}
.service-header {
flex-direction: column;
text-align: center;
}
.image-container {
height: 300px;
}

.overlay-box {
max-width: 180px;
padding: 12px;
}

.box-header {
flex-direction: column;
text-align: center;
gap: 8px;
margin-bottom: 10px;
}

.box-icon {
margin-right: 0;
}

.box-stats {
flex-direction: column;
gap: 10px;
}

.box-stat {
display: flex;
justify-content: space-between;
align-items: center;
text-align: left;
}

.box-stat-value {
margin-bottom: 0;
margin-right: 10px;
}

.service-icon {
margin-right: 0;
margin-bottom: 15px;
}

.services-grid {
grid-template-columns: 1fr;
}
h1 {
font-size: 1.8rem;
}

.logos-container {
grid-template-columns: repeat(2, 1fr);
}
.hero-section1 {
padding: 80px 0 60px;
margin-top: 91px;
}
.hero-section3 {
padding: 80px 0 60px;
margin-top: 91px;
}
.hero-section4 {
padding: 80px 0 60px;
margin-top: 91px;
}
.hero-section5 {
padding: 80px 0 60px;
margin-top: 91px;
}
.hero-section6 {
padding: 80px 0 60px;
margin-top: 91px;
}
.hero-section2 {
padding: 80px 0 60px;
margin-top: 91px;
}
.section-title5::after {
background: linear-gradient(to right, #0247b4, #3bb9f3);
display: inline-block;
}
 .logos-title {
    margin-top: 165px;
   
  }

.testimonial-page-container {
    margin-top: 170px;
}

.section-title5 {
    text-align: center;
}
.section-title5 h2{
   font-size: 30px;
}
.story-text h3 {
    text-align: center;
}



.hero-content1 h1 {
font-size: 1.8rem;
}
.section-header h2 {
font-size: 2.3rem;
margin-top: -48px;
}
.slide-content {
padding: 30px;
text-align: center;
}

.slide-content h2 {
font-size: 2rem;
margin-bottom: 15px;
}

.slide-content p {
font-size: 1rem;
max-width: 100%;
}

.hero-banner {
height: 60vh;
min-height: 400px;
}

.arrow {
width: 45px;
height: 45px;
}

.arrow i {
font-size: 1.3rem;
}

.arrow-left {
left: 20px;
}

.arrow-right {
right: 20px;
}

.slide-counter {
top: 25px;
right: 25px;
padding: 8px 18px;
font-size: 1rem;
}

.dots-container {
bottom: 30px;
}

.dot {
width: 14px;
height: 14px;
}

.about-title {
font-size: 1.6rem;
}

.tech-circle {
width: 250px;
height: 250px;
}

.circle-content h3 {
font-size: 1.6rem;
}

.floating-element {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
margin: 15px auto;
width: 200px;
}
.floating-element:nth-child(1) {
    left: 30%;
  right: -28px;
}
.floating-element:nth-child(2) {
  bottom: 50%;
  left: -98px;
}

.floating-element:nth-child(3) {
  top: -1%;
  right: -98px;
}

.floating-element:nth-child(4) {
  top: -11%;
  right: 94px;
}
.section-title1 {
    font-size: 2.2rem;
}
.contact-icon {
margin-bottom: 10px;
margin-left: auto;
    margin-right: auto;
}
.contact-info li{
    display: block;
}
.contact-info{
    padding-left: 0px;
}
.footer-links li{
    display: inline-flex;
}
.footer-links{
     padding-left: 0px;
}

.slide-content h2 {
font-size: 28px;
}

.section-title h2 {
font-size: 30px;
}

.testimonial {
padding: 30px 20px;
}
}

@media (max-width: 400px) {
         .footer {
            text-align: center;
         }
            
.hero-banner {
height: 55vh;
min-height: 350px;
}

.slide-content {
padding: 25px;
}

.slide-content h2 {
font-size: 1.8rem;
}

.slide-content .cta-button {
padding: 12px 28px;
font-size: 1rem;
}
.overlay-box {
max-width: 160px;
padding: 10px;
}

.top-right-box, .bottom-left-box {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
margin: 10px 0;
max-width: 100%;
}

.image-container {
height: auto;
padding: 20px;
background: none;
}

.story-img {
display: none;
}

.image-container:before {
display: none;
}
}

/* Responsive Design */
@media (max-width: 1100px) {
.testimonial-card1.featured {
grid-column: span 1;
}
}

@media (max-width: 1024px) {

}

    /* mobile responsive s*/

