/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Template: oceanwp
Author: OceanWP
Author URI: https://oceanwp.org/about-oceanwp/
Description: OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful &amp; professional design. Very fast, responsive, RTL &amp; translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet &amp; mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor &amp; WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it's the only theme you will ever need: https://oceanwp.org/demos/
Tags: two-columns,right-sidebar,footer-widgets,blog,news,custom-background,custom-menu,post-formats,rtl-language-support,sticky-post,editor-style,threaded-comments,translation-ready,buddypress,custom-colors,featured-images,full-width-template,theme-options,e-commerce,block-styles,wide-blocks,accessibility-ready
Version: 4.1.5.1776423546
Updated: 2026-04-17 10:59:06

*/

main#main {
    display: none!important;
}
#top-bar {
	 display: none!important;
}
div#footer-inner {
	 display: none!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: 'IBM Plex Sans'!important;
	 
}
p {

	      font-family: "Poppins", sans-serif!important;
}
  :root {
            --pill-bg: #bbf7d0; 
            --pill-shadow: #166534;
            --accent-green: #15803d;
            --dark-green: #064e3b;
            --white-glass: rgba(255, 255, 255, 0.8);
	  --primary-color:#47a630;
	  --secoundary-color:#377cbb;
        }

        /* --- Global Reset & Layout --- */
     
/* 
        .header-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 110;
              padding: 30px 0px;
        } */

        .nav-wrapper {
            
            display: flex;
            justify-content: space-between;
            align-items: center;
			gap:0px;
        }

        /* --- Branding --- */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 900;
            font-size: 1.25rem;
            color: #14532d; /* green-900 */
            letter-spacing: -0.05em;
			width:15%;
        }

/*         .logo-icon {
            width: 2rem;
            height: 2rem;
            background-color: #dcfce7;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #14532d;
            font-size: 0.875rem;
        } */

        /* --- Desktop Button Style (From Reference Image) --- */
     .pill-button {
 background-color: transparent;
    border-radius: 9999px;
    padding: 10px 24px;
    font-weight: 600;
    font-family: 'Red Hat Display';
    /* letter-spacing: 2px; */
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* gap: 8px; */
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 500;
}
a.btn-cta {
   
    background: #377cbb;
    /* padding: 26px 16px; */
    /* border-radius: 68%; */
    font-size: 15px;
    color: white;
    border-radius: 9999px;
    padding: 10px 24px;
    text-decoration: unset !important;
    font-family: 'Red Hat Display';
    font-weight: 700;
}
a.btn-cta .fa-solid, .fas {
    padding-right: 5px;
}
        .pill-button:hover {
           color: var(--dark-green);
    background-color: #c0ecad;
    /* border: 2px solid var(--dark-green); */
    transform: translate(-4px, -4px);
    box-shadow: -6px 6px 0px #8383839e;
        }

        /* --- Hero Primary Button --- */
        .pill-button-primary {
            background-color: black;
            color: white;
            padding: 16px 40px;
            font-size: 1.125rem;
            border-radius: 9999px;
            font-weight: 700;
            display: inline-flex;
            box-shadow: -10px 10px 0px var(--pill-bg);
            transition: all 0.3s ease;
            margin-top: 2.5rem;
            text-decoration: none;
        }

        .pill-button-primary:hover {
            background-color: #292524;
            transform: translate(2px, -2px);
            box-shadow: -12px 12px 0px var(--pill-bg);
        }

        /* --- Mobile Overlay (Skew Panels) --- */
        #mobile-nav-overlay {
            position: fixed;
            inset: 0;
            z-index: 100;
/*             display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center; */
            visibility: hidden;
            pointer-events: none;
        }

        .menu-slice {
            position: absolute;
            width: 150%;
            height: 100%;
            background: white;
            top: 0;
            left: -150%;
            transform: skewX(-15deg);
            transition: all 0.6s cubic-bezier(0.8, 0, 0.1, 1);
            z-index: -1;
        }

        .menu-slice:nth-child(2) {
            background: var(--pill-bg);
            transition-delay: 0.1s;
            z-index: -2;
        }

        #mobile-nav-overlay.open {
            visibility: visible;
            pointer-events: auto;
        }

        #mobile-nav-overlay.open .menu-slice {
            left: -25%;
        }

        .nav-link-mobile {
          font-size: 17px;
    font-weight: 600;
			    font-family: 'Manrope'!important;
            color: var(--dark-green);
            opacity: 0;
            transform: translateX(-50px) skewX(-10deg);
            transition: all 0.4s ease;
            margin: 8px 0;
            text-decoration: none;
        }

        #mobile-nav-overlay.open .nav-link-mobile {
            opacity: 1;
            transform: translateX(0) skewX(0deg);
        }

        .nav-link-mobile:nth-child(1) { transition-delay: 0.3s; }
        .nav-link-mobile:nth-child(2) { transition-delay: 0.4s; }
        .nav-link-mobile:nth-child(3) { transition-delay: 0.5s; }
        .nav-link-mobile:nth-child(4) { transition-delay: 0.6s; }
 .nav-link-mobile:nth-child(5) { transition-delay: 0.7s; }
 .nav-link-mobile:nth-child(6) { transition-delay: 0.8s; }
 .nav-link-mobile:nth-child(7) { transition-delay: 0.9s; }


        /* --- Mobile Info Card --- */
        .info-card {
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.7s ease 0.8s;
            background: white;
            padding: 1.5rem;
            border: 2px solid black;
            border-radius: 1rem;
            width: 16rem;
        }

        #mobile-nav-overlay.open .info-card {
            opacity: 1;
            transform: translateY(0);
        }

        .network-status {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .status-dot {
            width: 0.75rem;
            height: 0.75rem;
            background-color: #22c55e;
            border-radius: 9999px;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        /* --- Hamburger Toggle --- */
        .menu-toggle {
            position: relative;
            z-index: 110;
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .bar {
            width: 28px;
            height: 3px;
            background: var(--dark-green);
            margin: 3px 0;
            transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            border-radius: 2px;
        }

        .menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .menu-toggle.open .bar:nth-child(2) { width: 0; opacity: 0; }
        .menu-toggle.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        .iot-badge {
            font-size: 0.7rem;
            background: black;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            vertical-align: middle;
            margin-left: 8px;
        }

        /* --- Hero Section --- */
        .hero-section {
            padding-top: 12rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            text-align: center;
            max-width: 56rem; /* max-w-4xl */
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.75rem; /* text-6xl */
            font-weight: 900;
            color: #1c1917;
            margin-bottom: 2rem;
            font-style: italic;
            letter-spacing: -0.05em;
            line-height: 1.1;
        }

        @media (min-width: 768px) {
            .hero-title { font-size: 6rem; }
        }

        .highlight {
            color: #16a34a;
        }
/* Container */


/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 0px;
}

/* Mobile Menu Content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 48px;
    width: 100%;
}

/* Hide mobile toggle on desktop */
.menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}


.logo-icon img {
    width: 100%;
}
.content-area {
    float: unset !important;
    position: unset !important;
    width: unset !important;
    padding-right: unset !important;
    border-right-width: unset !important;
    border-style: unset !important;
    border-color: unset !important;
}
slider img {
    width: 100%;
}
.header-over {
    padding: 10px 0px;
     box-shadow: inset rgb(0 0 0 / 52%) 0px 5px, rgb(0 0 0 / 86%) -20px -1px, rgba(240, 46, 170, 0.2) 0px 15px, rgb(79 79 79) 0px 20px, rgb(22 22 22) 0px 25px; 
   
	
    Z-INDEX: 1;
    background: white;

}
slider img {
    /* margin-top: -8px; */
    z-index: -1;
    position: relative;
    top: -40px;
}

/* abt-sec1 */

 .home-abt1-main-container {
              width: 100%;
    background-color: #eeeeee;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    padding: 50px;
        justify-content: center;
    align-items: center;
	 gap:30px;
        }


       
.home-abt1-badge {
    display: inline-flex;
    align-items: center;
  background: #d3d3d32e;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #046cb1;
    font-family: 'IBM Plex Sans';
    font-weight: 400;
}
        .home-abt1-badge-dot {
            width: 8px;
            height: 8px;
            background-color: #046cb1;
            border-radius: 50%;
            margin-right: 10px;
        }

        .home-abt1-headline {
            font-size: 45px;
            font-weight: 800;
            line-height: 1.1;
            color: #000000;
        
			  
        }

       .home-abt1-subheadline-blue {
    font-size: 43px;
    font-weight: 800;
    color: #47a630;
       margin-top: -3px;
		
  font-family: 'IBM Plex Sans';
}

        .home-abt1-no-worries-btn {
           display: inline-block;
    /* background: var(--secoundary-color); */
 
    /* padding: 6px 16px; */
  
    /* border-radius: 4px; */
  
    font-family: 'Poppins';
   
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #377cbb, #47a630);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
        }

        .home-abt1-brand-text {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 10px;
   font-family: 'IBM Plex Sans';
    margin-top: 10px;
        }
span.bot-s {
    font-size: 40px!important;
    color: #47A631;
    font-weight: 700!important;
}
        .home-abt1-description {
             color: black;
    font-size: 15px;
    line-height: 27PX;
    margin-bottom: 20px;
    max-width: 500PX;
    font-weight: 400;
			    width: 85%;
			
        }

        .home-abt1-enquire-btn {
          background-color: #064e3b;
    color: white;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none ! IMPORTANT;
   font-family: 'IBM Plex Sans';
			margin-top:0px;
        }
.home-abt1-enquire-btn a:hover {
	color:white!important;
}
        .home-abt1-enquire-btn:hover {
            transform: translateY(-2px);
        }

        .home-abt1-enquire-btn svg {
            margin-left: 5px;
        }

        .home-abt1-right-image-container {
              width: 80%;
/*             height: 600px; */
            border-radius: 40px;
            overflow: hidden;
            position: relative;
        }

        .home-abt1-hero-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            border-radius: 40px;
        }

        @media (max-width: 1024px) {
            .home-abt1-main-container {
                flex-direction: column;
                padding: 20px;
            }
            .home-abt1-left-content {
                padding: 40px 20px;
                text-align: center;
            }
            .home-abt1-description {
                        margin: 0px;
        width: 100%;
        line-height: 25px;
        margin-bottom: 20px;
					
            }
			
        }
.spacer {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
.mask {
        overflow: hidden;
        display: block;
    }
span.blue {
	color:var(--secoundary-color)
}


/* abt-sec2 */

 .home-new2-body-wrapper {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: #f8fafc;
        }

        .home-new2-hero-container {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        /* Image Panel (Left) */
        .home-new2-left-panel {
            width: 50%;
            position: relative;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .home-new2-image-container {
            position: relative;
            width: 90%;
            height: 90%;
            background: url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center center / cover;
            border-radius: 40px 180px 40px 180px;
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
            overflow: visible;
        }

        /* Blue Panel (Right) */
        .home-new2-right-panel {
            width: 50%;
/*             background-color: #0056B3; */
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 8% 0 12%;
            position: relative;
            overflow: hidden;
        }

        /* The Gradient Overlay on the blue section */
        .home-new2-right-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 150px;
            height: 100%;
            background: linear-gradient(to right, white, transparent);
            z-index: 2;
            opacity: 0.8;
        }

        .home-new2-bg-pattern {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 70%;
            height: 80%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" opacity="0.15"><path fill="white" d="M450,450 C350,300 200,450 100,300 C50,200 150,100 300,50 C400,20 480,80 450,450 Z"/></svg>');
            background-repeat: no-repeat;
            background-size: contain;
            pointer-events: none;
            z-index: 1;
        }

        /* Hotspot Styling */
        .home-new2-automation-point {
            position: absolute;
            z-index: 30;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .home-new2-dot-wrapper {
            position: relative;
            width: 14px;
            height: 14px;
        }

        .home-new2-dot-core {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        /* Blinking / Pulse Animation */
        .home-new2-dot-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: home-new2-pulse-ring 2.5s infinite ease-out;
        }

        /* Staggered animation delays */
        .home-new2-pos-greenhouse .home-new2-dot-pulse { animation-delay: 0.5s; }
        .home-new2-pos-solar .home-new2-dot-pulse { animation-delay: 1s; }
        .home-new2-pos-landscape .home-new2-dot-pulse { animation-delay: 1.5s; }
        .home-new2-pos-livestock .home-new2-dot-pulse { animation-delay: 0.2s; }
        .home-new2-pos-water .home-new2-dot-pulse { animation-delay: 0.8s; }

        @keyframes home-new2-pulse-ring {
            0% { width: 100%; height: 100%; opacity: 0.9; }
            70% { width: 450%; height: 450%; opacity: 0; }
            100% { width: 450%; height: 450%; opacity: 0; }
        }

        .home-new2-point-label {
            background: white;
            padding: 8px 16px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 0.85rem;
            color: #222;
            white-space: nowrap;
            transition: 0.3s;
        }

        .home-new2-point-label:hover {
            transform: translateY(-3px);
            background: #fdfdfd;
        }

        .home-new2-point-icon {
            font-size: 1.4rem;
            color: #28a745;
        }

        /* Specific Placements */
        .home-new2-pos-farm { top: 12%; left: 15%; }
        .home-new2-pos-greenhouse { top: 15%; right: 5%; }
        .home-new2-pos-solar { top: 44%; left: -2%; }
        .home-new2-pos-landscape { top: 46%; right: 2%; }
        .home-new2-pos-livestock { bottom: 10%; left: 5%; }
        .home-new2-pos-water { bottom: 8%; right: 10%; }

        /* Typography & UI Elements */
        .home-new2-who-we-are-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1.5rem;
            z-index: 5;
        }

        .home-new2-line {
            height: 1.5px;
            background: rgba(255, 255, 255, 0.4);
            width: 40px;
        }

        .home-new2-who-we-are-text {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
            font-weight: 400;
            color: #d1d5db;
        }

        .home-new2-we-are-box {
            background: #76bc21;
            color: #003e82;
            padding: 2px 10px;
            border-radius: 4px;
            font-weight: 700;
        }

        h1.home-new2-brand {
            font-size: 7.5rem;
            font-weight: 800;
            margin-bottom: 0rem;
            letter-spacing: -3px;
            opacity: 0.35;
            z-index: 5;
            position: relative;
            top: -10px;
        }

        h2.home-new2-headline {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            z-index: 5;
            margin-top: -20px;
        }

        .home-new2-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.85;
            margin-bottom: 3.5rem;
            z-index: 5;
            max-width: 90%;
        }

        .home-new2-btn-learn {
            background: white;
            color: #0056B3;
            padding: 15px 38px;
            border-radius: 50px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 5;
            border: 1px solid transparent;
        }

        .home-new2-btn-learn:hover {
            transform: scale(1.08);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        @media (max-width: 1024px) {
            .home-new2-hero-container { flex-direction: column; }
            .home-new2-left-panel, .home-new2-right-panel { width: 100%; min-height: 600px; }
            .home-new2-right-panel::before { display: none; }
            h1.home-new2-brand { font-size: 5rem; }
            h2.home-new2-headline { font-size: 2.5rem; }
        }


/* home-3 */

        .home-sec3-new-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            padding: 80px 0;
            color: #1a1a1a;
			padding: 50px 0px;
        }

        .home-sec3-new-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Header Area */
        .home-sec3-new-header-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .home-sec3-new-badge-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .home-sec3-new-badge {
            background-color: #1a5d3b;
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .home-sec3-new-badge:hover {
            background-color: #76bc21;
            color: #003e82;
        }

        .home-sec3-new-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: #76bc21;
            border-radius: 50%;
        }

        .home-sec3-new-line {
            height: 1.5px;
/*             background: #e2e8f0; */
            width: 50px;
        }

        .home-sec3-new-title {
           font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 35px;
    line-height: 58px;
        }
.home-sec3-new-title span {
    color: var(--secoundary-color);
}
.home-sec3-new-badgeee {
    font-size: 18px;
   font-family: 'IBM Plex Sans';
    font-weight: 700;
    color: white;
}
span.\33 -se {
    background: var(--primary-color);
    padding: 2px 5px;
    color: white;
    border-radius: 3px;
}
        .home-sec3-new-explore-btn {
            background-color: #0056B3;
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none!important;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
			font-family: "Manrope", sans-serif !important;
			width:100%;
        }

        .home-sec3-new-explore-btn:hover {
            background-color: #003e82;
            transform: translateX(5px);
        }

        /* Grid Layout */
        .home-sec3-new-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Card Styling */
        .home-sec3-new-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .home-sec3-new-card:hover {
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: transparent;
        }

        .home-sec3-new-img-box {
            width: 100%;
            height: 240px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 25px;
            position: relative;
        }

        .home-sec3-new-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .home-sec3-new-card:hover .home-sec3-new-img-box img {
            transform: scale(1.1);
        }

        .home-sec3-new-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #0056B3;
            margin-bottom: 12px;
        }

        .home-sec3-new-card-desc {
            font-size: 14px;
            color: black;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .home-sec3-new-card-btn {
            width: 40px;
            height: 40px;
            background-color: #1a5d3b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none!important;
            transition: all 0.3s ease;
        }

        .home-sec3-new-card:hover .home-sec3-new-card-btn {
            background-color: #76bc21;
            transform: rotate(-45deg);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .home-sec3-new-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .home-sec3-new-header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .home-sec3-new-grid {
                grid-template-columns: 1fr;
            }
            .home-sec3-new-title {
                font-size: 32px;
            }
        
}
			
/* 	 home-sec4		 */
 /* --- NEW CLIENTS SECTION STYLES --- */
        .home-logo-sec-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
/*             padding: 50px 0; */
        }

        .home-logo-sec-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .home-logo-sec-banner {
            background-color: #0b3d2c;
            border-radius: 40px;
            padding: 60px 40px 180px 40px;
            text-align: center;
            color: white;
            position: relative;
        }

        .home-logo-sec-badge {
            display: inline-flex;
    align-items: center;
    /* background: white; */
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Red Hat Display';
    font-weight: 400;
			gap:8px;
        }

        .home-logo-sec-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: 50%;
        }

        .home-logo-sec-main-title {
                font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    /* letter-spacing: -1px; */
    margin: auto 175px 20px;
    line-height: 65px;
        }

        .home-logo-sec-subtitle {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
			color:white!important;
        }

        /* Logo Grid Positioning */
        .home-logo-sec-grid-container {
            margin-top: -120px;
            position: relative;
            z-index: 10;
            padding: 0 40px;
        }

        .home-logo-sec-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .home-logo-sec-card {
            background: #f0ffdb;
            border-radius: 25px;
            padding: 25px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            min-height: 200px;
            border: 1px solid transparent;
        }

        .home-logo-sec-card:hover {
            background: #f0ffdb;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #76bc21;
        }

        .home-logo-sec-img-wrap {
         
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .home-logo-sec-img-wrap img {
          
            transition: all 0.3s ease;
        }

        .home-logo-sec-card:hover .home-logo-sec-img-wrap img {
            filter: grayscale(0%);
            opacity: 1;
        }

        .home-logo-sec-name {
            font-size: 15px;
            font-weight: 700;
            color: #0b3d2c;
            margin-bottom: 4px;
			
font-family: 'Red Hat Display';

        }

        .home-logo-sec-sector {
		  font-size: 15px;
            font-weight: 700;
            color: #0b3d2c;
          
           
            letter-spacing: 0.5px;
			font-family: "IBM Plex Sans", sans-serif;
        }

        @media (max-width: 1024px) {
            .home-logo-sec-grid { grid-template-columns: repeat(3, 1fr); }
            .home-logo-sec-main-title { font-size: 36px; }
        }

        @media (max-width: 768px) {
            .home-logo-sec-grid { grid-template-columns: repeat(2, 1fr); }
            .home-logo-sec-banner { padding-bottom: 120px; }
            .home-logo-sec-grid-container { margin-top: -80px; }
        }


/* footer  */
.footer-sec-new-wrapper {
            background-color: #000000;
            color: #ffffff;
            padding: 80px 0 30px 0;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .footer-sec-new-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-sec-new-main-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-sec-new-col-brand img {
            width: 180px;
            background: #ffffff;
            padding: 10px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

       

        .footer-sec-new-col-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-sec-new-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-sec-new-links li {
            margin-bottom: 12px;
        }

        .footer-sec-new-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-sec-new-links a:hover {
            color: #76bc21;
            padding-left: 5px;
        }

        .footer-sec-new-contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-sec-new-contact-icon {
            font-size: 20px;
            color: #ffffff;
            margin-top: 2px;
        }

        .footer-sec-new-contact-text p {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
			color:white!important;
        }

        .footer-sec-new-contact-text span {
            display: block;
            font-size: 14px;
            color: #cccccc;
            margin-bottom: 2px;
        }
.footer-sec-new-location-btn  a {
	     color: #000000 !important;
}
        .footer-sec-new-location-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            color: #000000 !important;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 25px;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .footer-sec-new-location-btn:hover {
            background: #76bc21;
            color: #ffffff;
        }

        .footer-sec-new-socials {
            display: flex;
            gap: 12px;
        }

        .footer-sec-new-social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-sec-new-social-icon.instagram { background: #E1306C; }
        .footer-sec-new-social-icon.whatsapp { background: #25D366; }
        .footer-sec-new-social-icon.linkedin { background: #0077B5; }
        .footer-sec-new-social-icon.youtube { background: #FF0000; }
        .footer-sec-new-social-icon.twitter { background: #000000; border: 1px solid #333; }
        .footer-sec-new-social-icon.facebook { background: #1877F2; }

        .footer-sec-new-social-icon:hover {
            transform: translateY(-5px);
            opacity: 0.8;
        }

        .footer-sec-new-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            text-align: center;
        }

        .footer-sec-new-copyright {
            font-size: 14px;
            color: #888!important;
        }

        @media (max-width: 1024px) {
            .footer-sec-new-main-row { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .footer-sec-new-main-row { grid-template-columns: 1fr; }
            .footer-sec-new-wrapper { padding: 50px 0 30px 0; }
        }


.new-home-blinking-inner {
    display: flex;
    gap: 100px;
    align-items: center;
}
.new-home-blink-left {
    width: 50%;
 
}
.new-home-blibk-right {
    width: 50%;
}
.new-home-blikning {
  background: url(https://demo.getln.com/botberry/wp-content/uploads/2026/04/group-1.webp);
    background-size: cover;
    padding: 50px 0px;
}
.new-home-blibk-right h2 {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff47;
    margin-bottom: 10px;
}
.new-home-blink-left img {
    border-radius: 50px;
	width:100%;
}
.new-home-blibk-right h3 {
font-size: 35px;
    color: white;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 25px;
	line-height:50px;
}

.new-home-blibk-right p {
    font-size: 15px;
    color: white !important;
    font-weight: 400;
    line-height: 27px;
	    margin-bottom: 35px;

}


/* testimonial */
 .curosel-home-new-testi-sec-wrapper { 
            padding: 80px 0; 
            background: #fdfdfd; 
            overflow: hidden; 
        }
        .curosel-home-new-testi-container { 
         
            display: flex; 
            gap: 50px; 
            align-items: center; 
			padding:50px 0px;
        
        }
        .curosel-home-new-testi-content { 
          width:35%;
			    padding: 0px 0px 0px 90px;
        }
        .curosel-home-new-testi-badge { 
            background: #eee; 
            padding: 5px 15px; 
            border-radius: 20px; 
            font-size: 13px; 
            margin-bottom: 20px; 
            display: inline-block; 
            font-weight: 600;
        }
        .curosel-home-new-testi-title { 
            font-size: 45px; 
            font-weight: 800; 
            line-height: 55px; 
            margin-bottom: 30px; 
            color: var(--text-dark);
        }
        .curosel-home-new-testi-title span { 
            color: var(--secoundary-color); 
            display: block; 
        }
        
        .curosel-home-new-testi-slider-container { 
            width:65%;
            position: relative; 
        }
        .curosel-home-new-testi-cards-row { 
            display: flex; 
            gap: 25px; 
            overflow-x: hidden; 
            padding: 20px 0; 
            scroll-behavior: smooth;
        }
        .curosel-home-new-testi-card { 
            min-width: calc(47% - 12.5px); 
            background: #f9f9f9; 
            border: 1px solid #eee; 
            border-radius: 25px; 
            padding: 25px; 
            transition: all 0.3s ease;
        }
        .curosel-home-new-testi-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .curosel-home-new-testi-img { 
            width: 100%; 
            height: 220px; 
            border-radius: 15px; 
            margin-bottom: 20px; 
            object-fit: cover; 
        }
        .curosel-home-new-testi-text { 
         
    color:black;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
        }
        .curosel-home-new-testi-stat { 
            background: #dff5e1; 
            color: #1a5d3b; 
            padding: 5px 15px; 
            border-radius: 20px; 
            font-size: 12px; 
            font-weight: 700; 
            display: inline-block; 
            margin-bottom: 15px; 
        }
        .curosel-home-new-testi-user { 
			    display: flex;
    align-items: center;
    gap: 15px;
           font-family: 'IBM Plex Sans';
    font-size: 16px;
    margin-top: 20px;
        }
        .curosel-home-new-testi-avatar { 
            width: 45px; 
            height: 45px; 
            border-radius: 50%; 
            background: #cce5d6; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: 700; 
            color: #1a5d3b; 
        }

        .curosel-home-new-testi-nav { 
            display: flex; 
            gap: 15px; 
            margin-top: 30px; 
        }
        .curosel-home-new-nav-btn { 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            border: 1px solid #ddd; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            transition: 0.3s;
            background: #fff;
            color: var(--text-dark);
        }
        .curosel-home-new-nav-btn:hover { 
            background: #47a630; 
            color: #fff; 
            border-color: var(--primary-blue); 
        }

        @media (max-width: 1024px) {
            .curosel-home-new-testi-container { flex-direction: column; text-align: center; }
			.curosel-home-new-testi-slider-container {
    width: 100%; 
			}
			.cts-sec-home-new-wrapper {
				 flex-direction: column;
			}
            .curosel-home-new-testi-card { min-width: 100%; }
            .curosel-home-new-testi-nav { justify-content: center; }
            .curosel-home-new-testi-title { font-size: 36px; }
        }
span.\33 -se {
	    margin: 0px 0px 0px 5px;
}
.curosel-home-new-testi-content p {
    font-size: 20px;
    width: 80%;
    font-weight: 400;

	
	
	
}



/* card reveal effect */

  /* Card Container */
    .spacer {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        .home-sec3-new-wrapper {
/*             padding: 100px 5%;
            max-width: 1400px; */
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

/*         .home-sec3-new-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            justify-items: center;
        } */

        /* Main Card Container - Aspect Ratio Square (1/1) aayi maatti */
        .art-card {
            position: relative;
            width: 100%;
/*             max-width: 400px; */
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 20px;
/*             background: #1a1f2e; 
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4); */
        }

        /* 1. BASE IMAGE LAYER */
        .base-image-layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.4;
            filter: grayscale(100%);
            transition: all 1s ease;
        }

        .base-image-layer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 2. REVEAL IMAGE LAYER */
        .image-layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            
            -webkit-mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
            mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
            -webkit-mask-size: 2300% 100%;
            mask-size: 2300% 100%;
            
            -webkit-mask-position: 0% 0;
            mask-position: 0% 0;
            
            pointer-events: none;
        }

        .image-layer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Animation trigger on scroll */
        .art-card.revealed .image-layer {
            animation: brush-reveal 1.2s steps(22) forwards;
        }
        
        .art-card.revealed .base-image-layer {
            filter: grayscale(0%);
            opacity: 1;
        }

        .card-label {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: opacity 0.5s ease;
        }

        .art-card.revealed .card-label {
            opacity: 0;
        }

        .card-content {
            position: absolute;
            inset: 0;
            z-index: 11;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
        }
.card-content h3 {
    color: white !important;
    font-size: 25px;
    font-weight: 700;
}
.card-content p {
    color: white !important;
    font-size: 14px;
    font-weight: 400;
}
.btn-circle i.fas.fa-arrow-right {
    color: white;
    font-size: 18px;
    padding: 0px;
}
        .art-card.revealed .card-content {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes brush-reveal {
            from { -webkit-mask-position: 0% 0; mask-position: 0% 0; }
            to { -webkit-mask-position: 100% 0; mask-position: 100% 0; }
        }

        .btn-circle {
            width: 45px;
            height: 45px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }

        h3 { margin: 0 0 5px 0; font-size: 1.5rem; font-weight: 600; }
p { margin: 0; font-size: 0.9rem; line-height: 1.4; }

        @media (max-width: 768px) {
            .home-sec3-new-wrapper { padding: 60px 20px; }
            h2 { font-size: 2rem; }
        }
/* end */



.new-home-blikning .home-abt1-enquire-btn {
	background-color: #e7f5ff;
    color: black;
}



/* cta-section */
/*     .cts-sec-home-new-container {
            width: 100%;
            margin-right: auto;
            margin-left: auto;
            padding: 40px 20px;
        } */
.cts-sec-home-new-container {
	background: #f9f9f9;
	    padding: 80px 0px;
}
        .cts-sec-home-new-wrapper {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }

       
        /* Left Visual Column */
      

     
            .cts-sec-home-new-visual-col {
                width: 40%!important;
            }
			    .cts-sec-home-new-content-col {
        width: 60% !important;
    
        }

        .cts-sec-home-new-image-box {
            border-radius: 60px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 600px;
            position: relative;
        }

        .cts-sec-home-new-img-top, 
        .cts-sec-home-new-img-bottom {
            height: 100%;
            width: 100%;
            position: relative;
        }

        .cts-sec-home-new-img-top img,
        .cts-sec-home-new-img-bottom img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .cts-sec-home-new-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(30, 58, 138, 0.1);
            mix-blend-mode: multiply;
        }

        /* Right Content Column */
        .cts-sec-home-new-content-col {
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 1024px) {
            .cts-sec-home-new-content-col {
                width: 58.33%;
            }
        }

        .cts-sec-home-new-header {
            margin-bottom: 10px;
        }

       

        .cts-sec-home-new-main-title {
            font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    color: #0e472a;
    margin-bottom: 10px;
        }

        .cts-sec-home-new-description {
              color: black;
    font-size: 15px;
    /* max-width: 600px; */
    margin-bottom: 20px;
    margin-top: 30px;
line-height: 30px;
        }

        .cts-sec-home-new-btn-primary {
            background-color: #1a5d3b;
            color: white;
            padding: 12px 28px;
            border-radius: 9999px;
            border: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .cts-sec-home-new-btn-primary:hover {
            opacity: 0.9;
        }

        /* Bottom Section with Blue Box and Form */
        .cts-sec-home-new-info-row {
            position: relative;
            display: flex;
            flex-direction: column;
            margin-top: 30px;
        }

        @media (min-width: 1024px) {
            .cts-sec-home-new-info-row {
                flex-direction: row;
            }
        }

        .cts-sec-home-new-blue-box {
            background-color: #0056a4;
            color: white;
            padding: 35px;
            border-radius: 40px;
            width: 100%;
        }

        @media (min-width: 1024px) {
            .cts-sec-home-new-blue-box {
                width: 83.33%;
                border-radius: 40px 0 0 40px;
                padding-right: 140px;
            }
        }

        .cts-sec-home-new-blue-sub {
            font-size: 30px;
            font-weight: 300;
            margin-bottom: 8px;
        }

        .cts-sec-home-new-blue-title {
               font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #99ccff;
        }

        .cts-sec-home-new-blue-text {
            color: white!important;
            font-size: 14px;
            max-width: 320px;
            margin-bottom: 40px;
        }

        .cts-sec-home-new-list-title {
            font-size: 23px;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .cts-sec-home-new-list {
            list-style: none;

        }
.cts-sec-home-new-list {
    list-style: none;
 
    padding: 0px !important;
    margin: 0px !important;
    font-size: 15px;
    color: white !important;
}

        .cts-sec-home-new-list li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
			    font-family: 'Red Hat Display';
				
        }

        /* Form Card */
        .cts-sec-home-new-form-wrapper {
            width: 100%;
            padding: 16px;
        }

        @media (min-width: 1024px) {
            .cts-sec-home-new-form-wrapper {
              position: absolute;
        right: 0;
        top: -40px;
        width: 350px;
        padding: 0;
            }
        }

        .cts-sec-home-new-form-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #f1f5f9;
        }

        .cts-sec-home-new-form-title {
            font-size: 16px;
            font-weight: 500;
            color: #1e293b;
            text-align: center;
            margin-bottom: 8px;
        }

        .cts-sec-home-new-form-sub {
            font-size: 13px;
            text-align: center;
            color: black;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .cts-sec-home-new-form-group {
            margin-bottom: 20px;
        }

        .cts-sec-home-new-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 6px;
        }

        .cts-sec-home-new-label span {
            color: #ef4444;
        }

        .cts-sec-home-new-input-wrap {
            position: relative;
        }

        .cts-sec-home-new-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            width: 16px;
            height: 16px;
        }

        .cts-sec-home-new-input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background-color: #fcfcfc;
            font-size: 14px;
            transition: all 0.2s;
        }

        .cts-sec-home-new-input:focus {
            outline: none;
            border-color: #1a5d3b;
            background-color: #fff;
        }

        .cts-sec-home-new-phone-flex {
            display: flex;
            gap: 8px;
        }

        .cts-sec-home-new-select-country {
            width: 96px;
            padding: 12px 24px 12px 32px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
            background-color: #fcfcfc;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 10px auto;
        }

        .cts-sec-home-new-flag {
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 12px;
        }

        .cts-sec-home-new-input-phone {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
        }

        .cts-sec-home-new-select {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background-color: #fcfcfc;
            appearance: none;
            font-size: 14px;
            color: #64748b;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px auto;
        }

        .cts-sec-home-new-btn-submit {
            width: 100%;
            background: linear-gradient(90deg, #38a169 0%, #1a5d3b 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cts-sec-home-new-btn-submit:active {
            transform: scale(0.98);
        }

        .cts-sec-home-new-footer-text {
            margin-top: 16px;
            font-size: 10px;
            color: #94a3b8;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        .cts-sec-home-new-hidden-icon {
            display: none;
        }
.cts-sec-home-new-sub-title {
     font-size: 40px;
    font-weight: 700;
    color: #060606;
    margin-bottom: 13px;
      font-family: 'Red Hat Display'!important;
}

.cts-sec-home-new-header a.home-sec3-new-explore-btn {
    width: 23%;
    background: #0e472a;
}

.forminator-ui.forminator-custom-form[data-design=default] {
    margin: 20px 0;

}
.forminator-ui#forminator-module-137.forminator-design--default .forminator-label {
	    font-family: 'IBM Plex Sans'!important;
}
.forminator-ui.forminator-custom-form[data-design=default] .forminator-input {

    font-size: 12px !important;
    border-radius: 3px !important;
      font-family: 'IBM Plex Sans'!important;
}
.forminator-ui.forminator-custom-form[data-grid=open] .forminator-row:not(:last-child) {
    margin-bottom: 11px!important;
}
button.forminator-button.forminator-button-submit {
    width: 100% !important;
    background: linear-gradient(344deg, #0f5752, #388b43) !important;
    color: white !important;
      font-family: 'IBM Plex Sans' !important;
    font-size: 16px!important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    padding: 5px !important;
}
.forminator-edit-module {
	display:none!important;
}

.footer-sec-new-brand-desc {
	color: #cccccc !important;
	    font-size: 15px!important;
}


@media (max-width: 1380px) {
	.nav-wrapper {
		gap:0px;
	}
	.desktop-menu {
		    width: 100%;
		display: flex;
        justify-content: center;
	}
	.pill-button {
		    padding: 0px 10px;
	}
	.pill-button {
		font-size: 15px;
	}
	a.btn-cta {
		    width: 17%;
	}
	.home-abt1-main-container {
		    padding: 20px;
	}
	.cts-sec-home-new-header a.home-sec3-new-explore-btn {
		    width: 27%;
	}
}
@media (max-width: 1200px) {
a.btn-cta {
    display: none;
}
	.desktop-menu {
		    width: 100%;
		display: flex;
        justify-content: right;
	}
}


.bta {
    width: 21%;
}

button.cookieadmin_re_consent {
    display: none!important;
}
div#siteseo-universal-metabox-icon {
	 display: none!important;
}

/* 
.home-abt1-right-image-container img {
    height: 550px;
    object-fit: cover;
}
 */


/* image reveal css */

.home-abt1-right-image-container img {
    width: 100%;
    height: 100%;
/*     object-fit: cover;
    transform: scale(1.3); */
    opacity: 0;
    transition: transform 2s ease;
}

/* Intha overlay thaan antha blue color sweep */
.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3272b2; /* Unga primary blue color */
    transform: scaleX(0);
    transform-origin: left;
    z-index: 2;
}

/* JS 'animate' class add pannumpothu trigger aagum */
.home-abt1-right-image-container.animate img {
    animation: imgReveal 2s forwards;
}

.home-abt1-right-image-container.animate .reveal-overlay {
    animation: overlayReveal 2s forwards;
}

/* Keyframes for the Blue Sweep */
@keyframes overlayReveal {
    0% { 
        transform: scaleX(0); 
        transform-origin: left; 
    }
    50% { 
        transform: scaleX(1); 
        transform-origin: left; 
    }
    51% { 
        transform: scaleX(1); 
        transform-origin: right; 
    }
    100% { 
        transform: scaleX(0); 
        transform-origin: right; 
    }
}

/* Keyframes for the Image Zoom & Fade */
@keyframes imgReveal {
    0% { 
        opacity: 0; 
        transform: scale(1.3); 
    }
    50% { 
        opacity: 0; 
    }
    51% { 
        opacity: 1; 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}


/* blinking aniamtion */

/* 1. Dot-oda primary animation style */
.home-abt1-badge-dot {
    position: relative;
    animation: blink-animation 1.5s infinite ease-in-out;
}

/* 2. Athu suthi vara pulse effect (Optional but looks professional) */
.home-abt1-badge-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit; /* Dot color-aiye eduthukum */
    border-radius: 50%;
    z-index: -1;
    animation: pulse-animation 1.5s infinite ease-in-out;
}

/* 3. Keyframes: Opacity-ai mathuvatharkku */
@keyframes blink-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* 4. Keyframes: Circle expand aagi fade aavatharkku */
@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}


/*btn hover effect  */
    .home-abt1-enquire-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background-color: #47a630 !important;
    color: white !important;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 500;
            overflow: hidden;
        
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1;
            cursor: pointer;
            border: none;
            font-size: 16px;
}

        /* 2. The Blue Reveal Layer */
        .home-abt1-enquire-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%;
            height: 500%;
            background: #0055a6;
            /* Slowed down from 1s to 1.5s */
            transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
            z-index: -1;
        }

        /* 3. Arrow Setup (The Loop Effect) */
        .arrow-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 24px;
            height: 24px;
            margin-left: 10px;
        }

        .main-arrow, .second-arrow {
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            /* Slowed down from 0.8s to 1.2s */
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .second-arrow {
            position: absolute;
            transform: translateX(-150%);
            opacity: 0;
        }

        /* 4. HOVER STATES */
        .home-abt1-enquire-btn:hover {
            color: white;
            transform: scale(1.05);
           
        }

        .home-abt1-enquire-btn:hover::before {
            transform: translate(-50%, -50%) rotate(45deg) translateY(0);
        }

        .home-abt1-enquire-btn:hover .main-arrow {
            transform: translateX(150%);
            opacity: 0;
        }

        .home-abt1-enquire-btn:hover .second-arrow {
            transform: translateX(0);
            opacity: 1;
        }

        /* 5. Shine Effect */
        .home-abt1-enquire-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg);
            transition: 0s;
        }

        .home-abt1-enquire-btn:hover::after {
            left: 150%;
            /* Slowed down from 1.2s to 1.8s */
            transition: 1.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

/* text-shine */
/*   .mask {
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        } */

        .mask.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Your Shine Animation Logic applied to the text */
       .text-shine-animate {
    background: linear-gradient(to right, #4d4d4d00 0, #fff 10%, #e6e6e669 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
  
    font-family: 'Red Hat Display' !important;
}

        @keyframes shine {
            0% {
                background-position: -200px;
            }
            60% {
                background-position: 300px;
            }
            100% {
                background-position: 300px;
            }
        }

        /* Glow effect for extra premium feel */
        .text-glow {
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        /* Section styles for scrolling demo */
        .scroll-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* line reveal */
   
        .new-home-blibk-right {
            padding: 20px;
        }

        .home-sec3-new-badge-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

      

      

        /* The Blinking Lines Logic */
        .home-sec3-new-line {
            height: 1px;
            width: 40px;
            background-color:white; /* Line color */
            
            /* Animation properties */
            animation: blink-animation 1.5s infinite ease-in-out;
        }

        /* Keyframes for the blinking effect */
        @keyframes blink-animation {
            0%, 100% {
                opacity: 1;
                box-shadow: 0 0 5px rgba(56, 189, 248, 0.8);
            }
            50% {
                opacity: 0.2;
                box-shadow: 0 0 0px rgba(56, 189, 248, 0);
            }
        }

        /* Optional: Add a slight delay to the second line for a wave effect */
        /* .home-sec3-new-line:last-child {
            animation-delay: 0.2s;
        } 
        */



.home-abt1-over {
    margin-bottom: 50px;
	    margin-top: 50px;
}

.sec-sec .home-abt1-enquire-btn::before   {
	background: #ffffff!important;
} 

.sec-sec .home-abt1-enquire-btn:hover {
            color: #47a630!important; 
}
.sec-sec {
    padding-left: 4px;
}
.sec-sec1 .home-sec3-new-badgeee {
    color: #2b72b5;
}
.sec-sec1  .home-sec3-new-line {
	background-color: #0c5dab;
}

/* spring-text-aniamtion */

/*    .spring-text {
      font-family: 'Instrument Serif', Georgia, serif;
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 400;
      font-style: italic;
      color: #0E0C09;
      letter-spacing: -0.02em;
      line-height: 1.1;
      text-align: center;
      display: block;
    } */

    /* Highlight span stays static until the animation starts */
    .spring-text .highlight {
/*       color: #E6100F;
      font-style: normal; */
      display: inline-block;
    }

    /* Only characters inside the span will have these properties */
    .char { 
      display: inline-block; 
      white-space: pre; 
      opacity: 0; 
      will-change: transform, opacity; 
      transform: translateY(60px);
    }

    #credit {
      position: fixed;
      bottom: 20px;
      right: 24px;
      font-family: 'DM Mono', monospace;
      font-size: 20px;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: rgba(14,12,9,0.6);
      text-decoration: none;
    }
    #credit span { color: #E6100F; }


/* btn-round-effect */


        /* 1. Base Button Styling */
        .en-sec-round {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            color: white !important;
    text-decoration: unset !important;
            font-weight: 500;
            cursor: pointer;
            border: none;
            font-size: 16px;
            white-space: nowrap;
            height: 60px;
            min-width: 175px;
            padding: 0;
            z-index: 1;
            overflow: hidden;
            border-radius: 100px;
            /* Your specific transition */
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* 2. The Animated Background Element (Green Part) */
        .btn-bg-round {
            position: absolute;
    top: 0px;
    left: 0;
    background-color: #47a630;
    height: 100%;
    width: 60px;
    border-radius: 100px;
    z-index: -2;
    animation: leftToRightExpand 4s infinite ease-in-out;
    transition: all 0.5s ease;
        }

        @keyframes leftToRightExpand {
            0%, 10% { width: 60px; }
            40%, 60% { width: 100%; }
            90%, 100% { width: 60px; }
        }

        /* 3. The Blue Reveal Layer */
        .en-sec-round::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%;
            height: 500%;
            background: #0055a6;
            transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
            z-index: -1;
        }

        /* 4. Arrow Setup */
        .arrow-wrappe-round {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 24px;
            height: 24px;
            margin-left: 10px;
        }

        .main-arrow, .second-arrow {
            position: absolute;
            /* Your specific transition */
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .second-arrow {
            transform: translateX(-150%);
            opacity: 0;
        }

        /* 5. Shine Effect */
        .en-sec-round::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 80%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg);
            transition: 0s;
        }

        /* 6. Text/Content Layout */
        .tn-content-round {
            display: flex;
            align-items: center;
            padding-left: 20px;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
			font-family: 'IBM Plex Sans';
        }

        /* 7. HOVER STATES */
        .en-sec-round:hover {
/*             transform: scale(1.05); */
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Stop pulse and fill green bg on hover */
        .en-sec-round:hover .btn-bg-round {
            animation: none;
            width: 100%;
        }

        .en-sec-round:hover::before {
            transform: translate(-50%, -50%) rotate(45deg) translateY(0);
        }

        .en-sec-round:hover .main-arrow {
            transform: translateX(150%);
            opacity: 0;
        }

        .en-sec-round:hover .second-arrow {
            transform: translateX(0);
            opacity: 1;
        }

        .en-sec-round:hover::after {
            left: 150%;
            transition: 1.8s cubic-bezier(0.23, 1, 0.32, 1);
        }


.per-se {
    width: 65%;
}



/* image reveal effect */
 /* Image-ai sutri ulla container */
    .reveal-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        background-color: #f8fafc; /* Image load aagum munnadi theriyum color */
		
		border-radius: 15px;
   
    }

    /* Initial state: Image hidden-ah irukkum */
    .reveal-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        
        /* 'clip-path' moolam image-ai maraithu vaikirom (right to left) */
        clip-path: inset(0 100% 0 0);
        
        /* Zoom effect-ukkaga initial scale */
        transform: scale(1.2);
        
        /* Reveal aagum pothu smooth-ah irukka transition */
        transition: 
            clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), 
            transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    /* Scroll panni view-kulla varum pothu trigger aagum state */
    .is-visible .reveal-image {
        clip-path: inset(0 0% 0 0);
        transform: scale(1);
    }



.logo .home-abt1-badge {
	display: inline-flex;
    align-items: center;
    background: #ffffff3b!important;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff!important;
    font-family: 'Red Hat Display';
    font-weight: 400;
}
.logo .home-abt1-badge-dot {
	    background-color: #ffffff;
}


.cts-sec-home-new-image-box .reveal-container  {
	height:100%!important;
}


/* Animation Definition */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); /* Form mela pogum */
  }
  100% {
    transform: translateY(0px); /* Thirumba pazhaya idathuku varum */
  }
}

/* Applying to form-lig class */
/* .form-lig {
  animation: floatAnimation 3s ease-in-out infinite;
  transition: all 0.3s ease;
} */

/* User hover pannum podhu animation-a stop panni mella mela thooka */
.form-lig:hover {
  animation-play-state: paused;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



@media (max-width: 1030px) {
	a.btn-cta {
		display:none;
		
	}
	.new-home-blinking-inner {
    flex-direction: column;
}
	.new-home-blink-left {
    width: 100%;
}
	.new-home-blibk-right {
    width: 100%;
}
.new-home-blinking-inner {
    gap: 50px;
}
	.new-home-blikning {
    background-position: bottom;
}
	h2.home-logo-sec-main-title {
		line-height:50px;
	}
	.curosel-home-new-testi-content {
    width: 100%;
    text-align: left;
}
	.curosel-home-new-testi-nav {
    justify-content: flex-start;
}
	.curosel-home-new-testi-slider-container
    width: 100%;
}
.curosel-home-new-testi-card {
    min-width: 48%;
}
.curosel-home-new-testi-content {
	padding:0px;
}
.curosel-home-new-testi-container {
    padding: 50px 25px;
}

.cts-sec-home-new-visual-col {
    width: 100%;
}
.cts-sec-home-new-content-col {
    width: 100%;
} 
}





.resource-card{

padding:30px;

background:#fff;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.resource-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.resource-card:hover{

transform:translateY(-6px);

}

.resource-icon{

font-size:45px;

margin-bottom:15px;

}

.resource-card h3{

margin-bottom:10px;

}

.category{

display:inline-block;

padding:4px 10px;

background:#f2f2f2;

border-radius:20px;

margin-bottom:15px;

}

.resource-card p{

margin-bottom:20px;

}

.resource-card a{

display:inline-block;

padding:10px 20px;

background:#000;

color:#fff;

text-decoration:none;

border-radius:5px;

}