:root {
            --primary-blue: #427EC0;
            --light-blue: #5BA29E;
            --dark-blue: #2c5282;
            --text-gray: #5F5B57;
          
        }
.top-heading
{
    color:#5BA29E;
}
    body
    {
      font-family: "Lato", sans-serif;
    }
    body, p {
    font-family: "Lato", sans-serif;
    color: var(--text-gray);
}
   .section-title {
        font-size: 40px;
        color: #427EC0;
        font-weight: 600;
    }
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}
h1, h2, h3, h4, h5
{
  font-family: "Jost", sans-serif; 
}
        @font-face {
    font-family: "Tarocco OT W03 Roman";
    src: url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.eot");
    src: url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/e307195432f00bcd92a324df9ae723a5.svg#Tarocco OT W03 Roman")format("svg");
}
        .navbar {
            background-color: white;
            padding: 25px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-bottom: 1px solid #e8e8e8;
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-around;
            position: relative;
        }
        
        .navbar-left {
            display: flex;
            align-items: center;
        }
        
        .navbar-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
        }
        
        .navbar-right {
            display: flex;
            align-items: center;
        }
       .nav-link {
    color: #5BA29E ! IMPORTANT;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    }
        .logo-text-main img {
            max-width: 130px;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-design {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        
        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 38px;
        }
        
       .nav-link:hover {
            color: #4a7ba7 !important;
        }
    .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 10px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .dropdown-toggle:hover {
            color: #007bff;
        }

        .dropdown-toggle::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #007bff;
            transition: width 0.3s ease;
        }

        .dropdown-toggle:hover::after {
            width: 100%;
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }
    .dropdown-menu.show
{
        opacity: 1;
    visibility: visible;
}
a.mm {
    color: #75b0ac;
    text-decoration: none;
}
        .dropdown-menu {
               position: absolute;
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 0px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s 
cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border: none;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
                border-bottom: 1px solid gainsboro;
            display: block;
            padding: 12px 25px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .dropdown-item:hover {
            color: #79b2ae;
    background: rgb(121 178 174 / 19%);
        }
    .dropdown-item:last-child {
    border-bottom: none;
}

        .dropdown-item:hover::before {
            left: 100%;
        }

        .dropdown-item i {
            margin-right: 10px;
            font-size: 14px;
        }
        
        .search-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }
        
        .search-btn:hover {
            border-color: #4a7ba7;
            color: #4a7ba7;
            background: #f8f9fa;
        }
        
        .search-btn i {
            font-size: 14px;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
        /* Mobile Sidebar Menu */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            z-index: 9999;
            transition: all 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        
        .mobile-sidebar.active {
            right: 0;
        }
        
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sidebar-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
        }
        
        .sidebar-nav {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        .sidebar-nav li {
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-nav a {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .sidebar-nav a:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        #home.vh-90{
            background: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 65%)), url(../img/banner.png) !Important;
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
                background: url(../img/about-shape.png);
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: 0% 0%;
        }
/*
    .about-section h2
        {
            font-family: "Tarocco OT W03 Roman";
        }
*/
        
        .about-content {
            margin-bottom: 40px;
        }
        
        .about-img {
            background: #00373E1F;
            padding: 20px;
            border-radius: 20px;
        }
        .about-img img {
            max-width: 100%;
        }
        .stats {
        display: flex;
        gap: 50px;
        margin-top: 30px;
        background: #F5F5DC;
        border-radius: 10px;
        padding: 25px;
        max-width: 540px;
    }
    .lead {
    font-family: "Tarocco OT W03 Roman";
    color: var(--text-gray);
    font-size: 18px;
    line-height: 24px;
}
    #home.vh-90
        {
            height: 90vh;
        }

        .stats .stat-item:first-child {
            border-right: 1px solid #d7d7b0;
            padding-right: 40px;
        }
        
        .stat-item h3 {
            color: var(--primary-blue);
            font-size: 2.0rem;
            font-weight: 500;
            margin-bottom: 5px;
/*             font-family: "Tarocco OT W03 Roman";*/
        }
        
        .stat-item p {
             color: #5BA29E;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    }
        
        .method-section {
            padding: 80px 0;
            background-color: #F8F8F8;
        }
        .method-card:hover {
    background: var(--primary-blue);
}

 .method-card
{
    transition: all 0.4s ease-in-out;
}

.method-card:hover .method-icon {
    background: #2f5989;
}
.method-card:hover h4 {
    color: #fff;
}
.method-card:hover p {
    color: #fff;
}
        .method-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .method-title h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            font-weight: 500;
        }
        
        .method-grid {
            display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 40px;
        }
        
        .method-card {
            text-align: center;
            padding: 15px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .method-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .method-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 20px;
}
        
        .method-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 0px;
        }
        
        .download-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .download-form {
            background: #F5F5DC;
    padding: 40px 70px;
    border-radius: 10px;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    border-right: 0px;
        }
.download-section .fa-search {
    color: #fff;
}
.download-form .form-control {
    background: transparent;
    border-color: #5BA29E;
    border-radius: 5px 0px 0px 5px;
    padding: 8px 20px;
}
 .download-form button {
    border-left: 0px;
    border-color: #5BA29E;
    border-radius: 0px 5px 5px 0px;
    background: #5ba29e;
     padding: 8px 20px;
}
.contact-form .form-control {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0px;
    background: transparent;
    border-color: #959292;
    padding-left: 0;
}
.contact-box {
    padding-right: 150px;
}
.contact-form textarea.form-control {
    height: 86px !important;
}
.contact-form button {
    background: #427EC0;
    border-color: #427EC0;
    border-radius: 5px;
}
.tags button {
    border: 1px solid #5ba29e61;
    border-radius: 5px;
    color: #5BA29E;
    font-size: 14px;
    background: transparent;
}
        .contact-section {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0;
        }
        
        .contact-form {
            background: #EBF3FF;
            padding: 40px;
            border-radius: 10px;
            color: #333;
        }
        
        .blog-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom:0;
/*            box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-color: #A8CDCA;
            padding: 10px;
        }
        
        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-card-body {
            padding: 20px;
        }
     #insights .blog-card-body h5 {
            font-size: 15px;
            font-weight: 600;
        }
    .read {
        color: #427EC0;
        margin-bottom: 0;
    }
    .blog-card span img {
        height: 28px;
        width: auto;
    }




        .search-section {
            background-color: #f8f9fa;
            padding: 40px 0;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-input {
            border-radius: 25px;
            padding: 15px 50px 15px 20px;
            border: 1px solid #ddd;
            font-size: 16px;
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary-blue);
            font-size: 18px;
            text-decoration: none;
        }
        
        .intermediaries-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .organization-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .organization-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .org-title {
            color: var(--primary-blue);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .org-description {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .org-contact {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #6c757d;
            font-size: 14px;
        }
        
        .org-contact i {
            margin-right: 10px;
            width: 16px;
            color: var(--primary-blue);
        }






        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23364a5c"/><stop offset="100%" stop-color="%232c3e50"/></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="400"/><polygon fill="%2334495e" points="0,400 200,300 400,350 600,280 800,320 1000,250 1200,300 1200,400"/><polygon fill="%232c3e50" points="0,400 150,320 350,380 550,300 750,340 950,270 1200,320 1200,400"/><circle fill="%234a6741" cx="100" cy="350" r="30"/><circle fill="%235d7c52" cx="150" cy="340" r="25"/><circle fill="%236b8f5a" cx="200" cy="355" r="35"/></svg>');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
        }
        
        .main-content {
            padding: 60px 0;
        }
        
        .organization-title {
            color: var(--primary-blue);
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 40px;
        }
        
        .search-container.search-rep {
            width: 25%;
            margin-left: auto;
            margin-bottom: 30px;
            position: relative;
			margin-right: 0px;
        }
        
        .search-input {
            border-radius: 25px;
            padding: 12px 45px 12px 20px;
            border: 1px solid #ddd;
            font-size: 14px;
            background-color: white;
        }
        
        .search-btn {
                position: absolute;
    			right: 15px;
    			top: 50%;
    			transform: translateY(-50%);
    			background: #F5F5DC;
    			border-radius: 50px;
    			color: var(--primary-blue);
    			font-size: 16px;
        }
        
        .tab-navigation {
    		background: #5BA29E;
    		padding: 4px 10px;
    		margin-bottom: 40px;
    		border-radius: 5px;
		}
		.tab-navigation .nav-tabs {
    		background: #5BA29E;
			padding: 8px 0px;
    		border-radius: 5px;
		}
        
        .nav-tabs {
            border: none;
        }
        
        .nav-tabs .nav-link {
            border: none;
            background: transparent;
            color: white !Important;
            font-weight: 500;
            margin: 0 2px;
            padding: 9px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link.active {
    		background: rgb(199 245 243);
    		color: #397975 ! IMPORTANT;
    		backdrop-filter: blur(10px);
		}
        
        .nav-tabs .nav-link:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }
        
        .document-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .document-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .document-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        
        .download-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .download-btn:hover {
            background: var(--dark-blue);
            transform: scale(1.1);
        }
        
        .file-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px auto;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
        }
        
        .file-icon.png-file {
            background: #EDD286;
        }
        
        .file-icon.pdf-file {
            background: #EDD286;
        }
        
        .file-icon.doc-file {
            background: #EDD286;
        }
        
        .file-icon.word-file {
            background: #EDD286;
        }
        
        .document-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.4;
            margin: 0;
        }




		.hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="darksky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23233142"/><stop offset="100%" stop-color="%23455a64"/></linearGradient></defs><rect fill="url(%23darksky)" width="1200" height="400"/><polygon fill="%23263238" points="0,400 250,300 500,350 750,280 1000,320 1200,290 1200,400"/><polygon fill="%2337474f" points="100,400 300,320 550,380 800,300 1050,340 1200,310 1200,400"/></svg>');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
        }
        .main-content {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        .section {
            margin-bottom: 100px;
        }
        
        .section-title {
            color: var(--primary-blue);
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 30px;
        }
        
        .section-text {
            color: #6c757d;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .profile-image {
            border-radius: 15px;
            width: auto;
    	}
        
        .approach-section {
            padding: 80px 0 0 0;
            background: white;
        }
        
        .approach-item {
            padding: 0px 0;
            width: 100%;
        }
       
    	.approach-light {
            background: #f8f9fa;
        }
        
        .approach-yellow {
            background: #F5F5DC;
        }
        
        .approach-gray {
            background: #e9ecef;
        }
        
        .approach-title {
            color: var(--primary-blue);
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .approach-text {
            color: #6c757d;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .approach-image-full {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            border-radius: 0;
        }
        
        .approach-content {
            padding: 80px 80px;
        }
        
        .decorative-dots {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%235a9bd4" opacity="0.3"><circle cx="10" cy="10" r="2"/><circle cx="30" cy="10" r="2"/><circle cx="50" cy="10" r="2"/><circle cx="70" cy="10" r="2"/><circle cx="90" cy="10" r="2"/><circle cx="10" cy="30" r="2"/><circle cx="30" cy="30" r="2"/><circle cx="50" cy="30" r="2"/><circle cx="70" cy="30" r="2"/><circle cx="90" cy="30" r="2"/><circle cx="10" cy="50" r="2"/><circle cx="30" cy="50" r="2"/><circle cx="50" cy="50" r="2"/><circle cx="70" cy="50" r="2"/><circle cx="90" cy="50" r="2"/></g></svg>') no-repeat;
            background-size: contain;
        }
        
        .certifications-section {
            background: white;
            padding: 80px 0;
        }
        
        .certifications-title {
            color: var(--primary-blue);
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            padding-right: 150px;
        }
        
        .cert-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .cert-logo {
            height: 80px;
            width: auto;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .cert-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }





        .service-card {
            position: relative;
            height: 310px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        .card-bg.bg-mountains {
            background-image: url(../img/service-img.png);
        }
        .service-card .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
        }
        
        .service-card .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
        }
        
        .service-card .card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
        }
        
        .service-card h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .service-card p {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }
        .ganguli-service
            {
                background: #F7F6F4;
            }
        .additional-services {
            background-color: #fff;
            padding: 4rem 0;
        }
        
        .additional-service-card {
            background: #D6EFEE;
            border-radius: 10px;
            padding: 2rem;
            height: 220px;
            display: flex;
            flex-direction: column;
            text-align: center;
            margin-bottom: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .additional-service-card:hover {
            transform: translateY(-3px);
        }
        
        .additional-service-card h5 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .additional-service-card p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }






    .card.blog-card {
            background: white;
        	text-align: center;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
/*          box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-color: #A8CDCA;
            padding: 10px;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .blog-card .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .blog-card .card-body {
    		padding: 1rem 2rem;
		}
        
        .blog-meta {
        	color: var(--text-gray);
        	font-size: 0.85rem;
        	margin-bottom: 0.5rem;
    	}
        
        .blog-card .card-title {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .blog-card .card-text {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .view-more-btn {
    	background-color: var(--light-blue);
    	color: white;
    	border: none;
    	padding: 0.6rem 4rem;
    	border-radius: 5px;
    	font-size: 0.9rem;
    	font-weight: 500;
    	text-decoration: none;
    	display: inline-flex;
    	align-items: center;
    	gap: 0.5rem;
    	transition: all 0.3s ease;
    	width: 100%;
    	justify-content: space-evenly;
	}
        
        .view-more-btn:hover {
            background-color: #4A9FD1;
            color: white;
            transform: translateY(-1px);
        }
        
        .view-more-btn i {
    background: white;
    color: var(--light-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transform: rotate(326deg);
}






.content-section {
            padding: 4rem 0;
        }

        .content-text {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .highlight-link {
            color: var(--primary-blue);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-bottom 0.3s ease;
        }

        .highlight-link:hover {
            color: var(--primary-blue);
            border-bottom: 1px solid var(--primary-color);
        }
        .content-section h2 {
                color: #427EC0;
                font-size: 35px;
            }







    .filter-section {
            padding: 3rem 0 2rem 0;
            background-color: white;
        }

        .filter-tabs {
                display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background-color: var(--light-blue);
    border-radius: 5px;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
        }

        .filter-tab {
            background-color: transparent;
            border: none;
            color: white;
            padding: 0.5rem 1.8rem;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .filter-tab.active {
            background-color: var(--primary-blue);
/*            box-shadow: 0 2px 8px rgba(0,0,0,0.2);*/
        }

        .filter-tab:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .filter-tab.active:hover {
            background-color: var(--filter-active);
        }

        .videos-section {
            padding: 3rem 0 5rem 0;
          
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .play-button:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button i {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-left: 3px;
        }

        .video-content {
            padding: 1.0rem;
            text-align: center;
        }

        .video-category {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.4;
        }

        .video-title a {
                color: var(--primary-blue);
                text-decoration: none;
                transition: color 0.3s ease;
                font-weight: 500;
        }

        .video-title a:hover {
            color: var(--primary-color);
        }



/* client page css */
/* Service Cards */
        .client-service-card {
            background: white;
            border-radius: 8px;
            padding: 2rem 2rem;
/*            box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            min-height: 335px;
        }
        section#services {
            background: #F7F6F4;
        }

        .client-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .client-service-card h3 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .client-service-card p {
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Clients Section */
        .clients-section {
           padding: 3rem 0;
        }
        .img-client img {
            max-width: 110px;
        }
        .clients-section h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
        }

        .client-logo {
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
            opacity: 0.7;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            color: var(--primary-blue);
        }

        .carousel-indicators [data-bs-target] {
            background-color: var(--primary-blue);
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
	.carousel-control-next, .carousel-control-prev
		{
    		opacity: 1;
		}
	.carousel-indicators
	{
    	bottom: -40px;
	}
		.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover
		{
   			color: var(--primary-blue); 
		}





    /* Contact Section */
        .contact-section.sec {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .contact-info-card {
            background: var(--primary-blue);
            border-radius: 8px 0px 0px 8px;
            padding: 2.0rem;
            color: white;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .contact-info-card::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 150px;
            height: 150px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .contact-info-card h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .contact-info-card p {
            font-size: 0.95rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .contact-item i {
            width: 20px;
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        .book-now-btn {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            margin: 2rem 0;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .book-now-btn:hover {
            background: rgba(255,255,255,0.25);
            color: white;
            transform: translateY(-2px);
        }

        .book-now-btn i {
            margin-right: 0.5rem;
        }

        .minority-owned {
            font-size: 0.9rem;
            margin: 2rem 0;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(255,255,255,0.25);
            color: white;
            transform: translateY(-2px);
        }

        /* Contact Form */
        .contact-form.page-c {
           background: white;
    	   padding: 2.5rem 3rem;
    	   border-radius: 0 8px 8px 0px;
    	   box-shadow: 1px 4px 11px rgba(0, 0, 0, 0.1);
        }
		.contact-form.page-c .form-control
			{
				padding: 0.15rem 1rem;
			}
		.contact-form.page-c .form-control {
    		padding: 0.15rem 0rem;
		}

        .form-label {
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: none;
        }

        .form-control::placeholder {
            color: #aaa;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-send {
            background: var(--primary-blue);
            border: none;
            color: white;
            padding: 0.75rem 3rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-send:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(90, 159, 212, 0.3);
        }

        /* Map Section */
        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(90, 159, 212, 0.1) 20%, transparent 21%),
                radial-gradient(circle at 80% 70%, rgba(90, 159, 212, 0.1) 15%, transparent 16%),
                radial-gradient(circle at 60% 20%, rgba(90, 159, 212, 0.1) 25%, transparent 26%);
        }
	











        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 0px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .footer p {
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .footer a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            line-height: 1.8;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 15px;
            margin-top: 40px;
        }
        
        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .footer-contact-info span {
            display: flex;
            color: rgba(255,255,255,0.9);
            font-size: 13px;
        }
        
        .footer-right-links {
            text-align: right;
        }
        
        .footer-right-links a {
            display: inline-block;
            margin-left: 20px;
            color: rgba(255,255,255,0.9);
            font-size: 13px;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            margin-right: 12px;
            color: white;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .social-icons a:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .method-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .navbar-left, .navbar-right {
                display: none;
            }
            
            .navbar-center {
                position: static;
                transform: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .footer-bottom-left {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .footer-right-links {
                text-align: left;
                margin-top: 15px;
            }
            
            .footer-right-links a {
                display: block;
                margin-left: 0;
                margin-bottom: 8px;
            }
        }
@media (max-width: 600px) {
	.contact-section .col-lg-5 {
    padding-left: 15px !important;
}
	.about-section {
    padding: 30px 0;
	}
	.method-title {
    text-align: center;
    margin-bottom: 24px;
}
	.method-card h4
	{
		margin-bottom: 4px;
	}
	.navbar {
    background-color: white;
    padding: 0 0;
	}
	.logo-text-main img {
    max-width: 105px;
}
	.sidebar-header {
    padding: 8px;
	}
	.sidebar-nav a {
    display: block;
    padding: 8px 20px;
	}
	.hamburger {
    right: 10px !important;
}
	#home.vh-90 {
    height: 40vh;
}
	    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
	.method-title h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 500;
}
	.download-form h3 {
    font-size: 18px;
    margin-bottom: 0 !important;
}
	.contact-box h2 {
    font-size: 22px;
    margin-bottom: 8px !important;
}
	.contact-box {
    padding-right: 0px;
}
	section#contact .contact-form {
    margin-top: 25px;
}
	.download-form button {
   border-color: #5BA29E;
    border-radius: 5px;
    background: #5ba29e;
    padding: 8px 20px;
    margin-top: 10px;
}
	.contact-form .form-control
	{
		padding: 0.25rem 1rem;
	}
	.contact-form {
    background: #EBF3FF;
    padding: 24px;
    border-radius: 10px;
    color: #333;
}
	.blog-section .text-center.mb-5 {
    margin-bottom: 0 !important;
}
	.section-title {
    font-size: 24px;
}
	.blog-section p {
    font-size: 13px;
}
	.blog-section {
    padding: 30px 0;
    background: #f8f9fa;
}
	.hero-section
	{
		height: 184px;
	}
	.hero-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}
	.main-content {
    padding: 30px 0;
    background-color: #f8f9fa;
}
	.main-content .col-lg-7.pe-5 {
    padding-right: 15px !important;
}
	.profile-image {
    border-radius: 15px;
    width: 100%;
}
	.main-content .col-lg-5.ps-5 {
    padding-left: 15px !important;
}
	.approach-section {
    padding: 40px 0 0 0;
	}
	.approach-section .text-center.mb-5 {
    margin-bottom: 0 !IMPORTANT;
}
	.approach-section h2.section-title {
    margin-bottom: 20px !important;
}
	.approach-content {
    padding: 30px 20px;
}
	.footer a {
    color: rgba(255, 255, 255, 0.9);
		font-size: 13px;
    display: block;
    margin-bottom: 0px; 
   }
	.approach-image-full {
    width: 100%;
    height: 100%;
    min-height: 226px;
    
}
	.contact-section .col-lg-5 {
    padding-right: 15px !important;
}
	.contact-info-card {
    background: var(--primary-blue);
    border-radius: 8px;
	}
	.contact-section.sec {
    padding: 2rem 0;
    background: var(--light-gray);
}
	.contact-form.page-c {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 0 8px 8px 0px;
    box-shadow: 1px 4px 11px rgba(0, 0, 0, 0.1);
}
	section.contact-section.sec .col-lg-7.p-0 {
    padding-left: 15px ! IMPORTANT;
    padding-right: 15px ! IMPORTANT;
}
	.stat-item h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
	}
	.stat-item p {
    color: #5BA29E;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}
	.client-service-card
	{
		min-height: auto;
	}
	.client-service-card h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}
	.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}
	.clients-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}
	a.search-btn {
    position: relative;
    top: 13px;
    left: 18px;
    padding: 4px;
    text-align: center;
    display: flex;
    gap: 10px;
    width: 25px;
    height: 25px;
}
	.search-btn i {
    font-size: 13px;
}
	.method-icon img {
    max-width: 30px;
}
	.method-icon i {
    font-size: 20px;
}
	
}
.dropdown {
    position: relative;
    display: inline-block;
}
	.dropdown:hover .dropdown-menu {
    opacity: 1 !IMPORTANT;
    visibility: visible !important;
    display: block;
    top: 52%;
    left: 32%;
}
.dropdown:hover .dropdown-menu {
    opacity: 1 !IMPORTANT;
    visibility: visible !important;
    display: block;
    top: 60%;
    left: 120% !important;
}
.sidebar-nav a:hover {
    background: transparent !important;
}
 