html {
  scroll-behavior: smooth;
}

        .footer {
    
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}
         footer {
    background-color: #18181a;
    padding: 60px 40px 40px;
    padding-bottom: 0;
}
        
        .footer-left {
            display: grid;
            align-items: flex-start;
            gap: 50px;
            grid-template-columns: 18% 25% 25% 25%;
        }
        
        .logo-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        
        .logo {
        }
        
        .logo-text {
        }
        
        .google-rating {
            background-color: white;
            padding: 12px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .google-logo {
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }
        
        .rating-text {
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }
        
        .rating-number {
            color: #333;
            font-size: 16px;
            font-weight: bold;
        }
        
        .stars {
            color: #ffa500;
            font-size: 14px;
        }
        
        .footer-content {
            display: flex;
            gap: 120px;
        }
        
        .footer-column h3 {
            color: #999;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .footer-column p {
            color: #ccc;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        
        .footer-right {
            gap: 30px;
        }
        
        .newsletter {
        }
        
        .newsletter h3 {
            color: white;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .newsletter input {
            background-color: #404040;
            border: 1px solid #555;
            color: white;
            padding: 12px 16px;
            border-radius: 4px;
            font-size: 14px;
            width: 200px;
        }
        
        .newsletter input::placeholder {
            color: #999;
        }
        
        .newsletter button {
            background-color: #4c6ef5;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter button:hover {
            background-color: #3b5ce0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: #404040;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: #4c6ef5;
        }
        
        .footer-bottom {
            border-top: 1px solid #404040;
            padding: 20px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto;
        }
        
        .copyright {
            color: #999;
            font-size: 14px;
        }
        
        .privacy-link {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .privacy-link:hover {
            color: white;
        }
		
		  .form-container {
        }
        
        .form-group {
            margin-bottom: 30px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="url"] {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            border-radius: 50px;
            font-size: 16px;
            background-color: #f7f9fc;
            transition: all 0.3s ease;
            outline: none;
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="url"]:focus {
            border-color: #007bff;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }
        
        .checkbox-group {
            margin-bottom: 30px;
        }
        
        .checkbox-group label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .checkbox-item:last-child {
            margin-bottom: 0;
        }
        
        input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            border: 2px solid #dee2e6;
            border-radius: 4px;
            background-color: #f8f9fa;
            cursor: pointer;
            appearance: none;
            position: relative;
        }
        
        input[type="checkbox"]:checked {
            background-color: #007bff;
            border-color: #007bff;
        }
        
        input[type="checkbox"]:checked::after {
            content: '✓';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        
        .checkbox-item span {
            font-size: 16px;
            color: #333;
            cursor: pointer;
            user-select: none;
        }
        .formLeft img {
    width: 100%;
}

.formGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
	align-items: flex-end;
}

.bgGray {
    background: #f8f9fc;
    padding: 50px;
}

.commonHeading h2 {
    font-size: 50px;
    font-weight: 800;
}
.commonHeading h2 {
    text-align: center;
}

body {
    font-family: "Poppins", sans-serif;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 60px;
}

.formGrid form {
    background: #fff;
    border: 1px solid #d3dae4;
    padding: 50px;
    border-radius: 30px;
}

.highlight {
    display: grid;
    grid-template-columns: 30% 68%;
    gap: 2%;
    margin-top: 70px;
    margin-bottom: 70px;
}

.form-container {
}

.highContainer svg {
    width: 30px;
    height: 30px;
    display: flex;
}

.high3Ser {
    display: flex;
    align-items: center;
    gap: 50px;
}

.highContainer {
    display: -webkit-inline-box;
    gap: 10px;
}

.highContent h3 {
    font-size: 20px;
    font-weight: 500;
}

.highContainer svg path {
    fill: #46afcf;
}

.highHeading h3 {
    font-size: 30px;
    font-weight: 600;
}
.accordion .commonHeading {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 70px;
}
.accordion-button {
    cursor: pointer;
    width: 100%;
    padding: 24px 20px 24px 24px;
    display: block;
    background: none;
    /* border: none !important; */
    font-size: 18px;
    font-weight: 600;
      border: 1px solid #000;  
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.accordion-item {
    border-radius: 12px;
    width: 100%;
    max-width: 1160px;
    margin-top: 0;
    margin-bottom: 35px;
    padding-top: 0;
    padding-bottom: 0;
    transition: all .2s;
    overflow: unset;
}

	h2.accordion-header {
    /* border: 1px solid #000; */
    border-right: none;
}

.accordion-body {
    border: 1px solid #000;
    border-radius: 0px 0px 15px 15px;
}

.accordion-button:not(.collapsed) {
    border-bottom: none;
    border-radius: 15px 15px 0px 0px;
    border: 1px solid #000;
    border-bottom: none;
    padding-bottom: 10px;
}

div#collapseOne {
}

.accordion-collapse.collapse.show .accordion-body {
    border-top: none;
}
.logo-text img {
    width: 100%;
}

.footer-right {
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    background: #232225;
}

.newsletter input {
    background: #000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
}

.newsletter button {
    background: none;
    padding: 0;
    position: absolute;
    right: 20px;
    color: #fff;
    opacity: .8;
}

.newsletter-form {
    position: relative;
}
select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
    outline: none;
}
.formGrid button {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 16px;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
    outline: none;
    background: cadetblue;
    color: #ffff;
    border: none;
    font-size: 20px;
}

.multiPara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.commonHeading h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #5f9ea0;
    margin-bottom: 14px;
}

.multiPara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.multiPara h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: #5f9ea0;
    margin-bottom: 17px;
}

.multiPara h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 15px;
}

.multiPara p {
    font-size: 18px;
    line-height: 30px;
}

.exp {
    margin-top: 80px;
    margin-bottom: 80px;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrap ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    column-gap: 90px;
    margin-bottom: 0;
    align-items: center;
}

.nav-wrap ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.nav-wrap ul li a:hover
{
	color:#46afcf;
}

nav {
    padding: 30px 0;
}

.nav-wrap ul li:last-child {
    background-color: #46afcf;
    padding: 14px 20px;
}

.nav-wrap ul li:last-child a 
{
    color: #fff;
}

.nav-wrap ul li:last-child a i 
{
    margin-right: 5px;
}

.nav-wrap a img 
{
    width: 80%;
}

.hb-video-wrap 
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hb-video-wrap video 
{
    width: 100%;
}

.hb-video-wrap video 
{
    object-fit: cover;
    position: absolute;
    top: -150px;
}

section.herobanner-sect 
{
    overflow: hidden;
    position: relative;	
    height: calc(100vh - 161px);
}

/* section.herobanner-sect:before
{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000ad;
} */

section.herobanner-sect .container 
{
	height:100%;
    color: #fff;
    z-index: 9999;
    position: relative;
}

.hb-text-wrap {
	width: 48%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 0px;
}

span.smalltext-hb {
    font-weight: 400;
    font-size: 14px;
    color: #46afcf;
    margin-bottom: 20px;
}

.hb-text-wrap h2 {
    font-weight: 800;
    font-size: 35px;
    line-height: 45px;
	margin-bottom: 40px;
}

.hb-text-wrap h2 span {
    color: #46afcf;
}

.hb-text-wrap a {
    text-decoration: none;
    background-color: #46afcf;
    width: fit-content;
    padding: 10px 20px;
    color: #fff;
    border-radius: 7px;
}

.hb-text-wrap p:last-of-type
{
	margin-bottom: 40px;
}

section.ourservice-sect {
    padding: 40px 0;
    background-color: #1c1c1c;
    color: #fff;
}

.service-wrap h2 {
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 35px;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
	    gap: 20px;
}

.servicebox {
    border: 1px solid #FFF !important;
    border-radius: 15px;
    background: transparent !important;
    transition: 0.3s all ease;
    padding: 20px;
}

.hb-text-wrap p {
    font-size: 18px;
    line-height: 30px;
}

.servicebox h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.service-boxes p {
    font-size: 14px;
    margin-bottom: 25px;
}

.servicebox a {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 2px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
}

.servicebox:hover 
{
    background-color: #fff !important;
}

.servicebox:hover p
{
	color:#000;
}

.servicebox:hover h3
{
	color:#46afcf;
}

.servicebox:hover a
{
	color:#fff;
	background-color:#46afcf;
}


.multi-sec {
    padding: 30px 0 50px;
}

.multi-subtitle {
    font-size: 20px;
    text-transform: uppercase;
    color: #5f9ea0;
    margin-bottom: 17px;
}

.main-heading {
    max-width: 50%;
}

.multi-heading {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 15px;
}

.multi-list .multi-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 70px;
}


.multi-desc p {
    font-size: 30px;
}

.home p {
    font-size: 20px;
}

.multi-list ul {
    font-size: 20px;
    list-style: none;
    padding-left: 0;
}

.multi-list ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    font-size: 17px;
}

.multi-list ul li:before {
    content: '\2022';
    font-size: 26px;
    color: #46afcf;
    font-weight: 700;
    display: inline-block;
    margin-right: 15px;
    position: absolute;
    top: -6px;
    left: 0;
}


.creative-sec {
    background-color: #f3f3f3;
    padding: 75px 0;
}

.creative-row {
    display: flex;
    gap: 20px;
}

.creative-media {
    flex: 0 0 66.66%;
}

.creative-video {
    width: 100%;
    max-width: 735px;
    display: block;
}

.creative-content {
    flex: 0 0 33.33%;
}

.creative-subhead {
    font-size: 20px;
    text-transform: uppercase;
    color: #5f9ea0;
    margin-bottom: 17px;
}

.creative-heading {
    font-size: 60px;
    max-width: 400px;
    color: #021844;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.05;
}

.creative-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    border-radius: 25px;
    background: #46afcf;
    color: #fff;
    text-decoration: none;
    border: 2px solid #46afcf;
    margin-top: 30px;
    transition: background 0.3s ease, color 0.3s ease;
}

.creative-btn:hover {
    background: transparent;
    color: #46afcf;
}

.newsletter input:focus {
    background-color: #000;
    outline: unset;
	box-shadow:unset;
}

.accordion-item
{
	border:unset;
}

.accordion-button:focus
{
    outline: unset;
	box-shadow:unset;	
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.accordion-button:after {
    content: unset;
}

.accordion-button i {
    border: 1px solid #000;
    border-radius: 50px;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.accordion-button,
h2.accordion-header,
.accordion-button.collapsed, 
.accordion-button:not(.collapsed),
.accordion-body
{
    border: unset;
}

.accordion-item:last-of-type
{
	border-bottom-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;	
}

.accordion-item {
    border: 1px solid #000;
    border-top: 1px solid #000 !important;
}


.accordion-item:hover 
{
    box-shadow: 6px 6px #050038;
    border-radius: 12px;
}





.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; 
}

.select-selected {
  background-color: red;
}

/* .select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
} */

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

.select-items div,.select-selected {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius:50px;
}

.select-hide {
  display: none;
}

.select-items div {
    color: #000000;
    border-radius: 0;
    background-color: #f7f9fc;
    border: unset;
}

.select-items div:hover, .same-as-selected {
	color:#fff;
  background-color: #1967d2;
}

.custom-select
{
	position:relative;
}

.custom-select svg
{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

#accordionExample {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.multiPara.privaInside {
    display: block;
}

.multiPara.privaInside h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.multiPara.privaInside p {
    margin-bottom: 40px;
}

.multiPara.privaInside ul {
    margin-bottom: 40px;
}

.multiPara.privaInside ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.multiPara.privaInside ul a {
    color: #46afcf;
}		
		
.nav-wrap a img {
    width: 100px;
    transform: scale(1.5);
}		
.logo-text img {
    width: 80%;
}		
	section.herobanner-sect iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}	
			
.btext-cover 
{
    padding: 38px;
    background-color: #fff;
}

.btext-cover h2 {
    color: #46afcf;
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 32px;
}

.hb-text-wrap {
    width: 64%;
}

.btext-cover a {
    background-color: unset;
    color: #46afcf;
    padding: 0;
    font-size: 14px;
	font-weight: 500;
    border-radius: unset;
}

.btext-cover a i {
    margin-left: 1px;
	transition: .5s all ease;
}

.btext-cover a:hover i {
    margin-left: 5px;
	transition: .5s all ease;
}

section.herobanner-sect {
    height: calc(100vh - 320px);
}

section.herovid-aftersect p {
    margin-bottom: 0;
}

.after-video {
    color: #fff;
    text-align: center;
    width: 63%;
    margin: 0 auto;
}

section.herovid-aftersect {
    padding: 75px;
    position: relative;
    background: linear-gradient(6deg, #46afcf 1%, #355b7b 82%);
}

section.herovid-aftersect:before {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    top: -1px;
    left: 0;
    background-color: #355b7b;
}

.after-video h3 {
    font-size: 26px;
    font-weight: 600;
}

.after-video p {
    font-size: 18px;
    line-height: 30px;
}	


@media only screen and (min-width: 300px) and (max-width: 991px) 
{
	section.herobanner-sect 
	{
		height: 60vh;
	}

	.after-video {
		width: 100%;
	}

	section.herovid-aftersect {
		padding: 40px 20px;
	}

	.after-video h3 {
		margin-bottom: 20px;
	}

	.hb-video-wrap video {
		top: 0;
	}

	.hb-text-wrap {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: flex-end;
        bottom: 60px;
        position: relative;
	}

	.btext-cover {
		padding: 20px 20px;
	}

	.btext-cover h2 {
		font-size: 19px;
		line-height: 29px;
	}

	.btext-cover a {
		font-size: 15px;
	}	
	
}

















        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .form-container {
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .footer-left {
                flex-direction: column;
                gap: 40px;
                width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: left;
            }
            
            .footer-right {
                align-items: center;
            }
            
            .newsletter {
                text-align: center;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }
            
            .newsletter input {
                width: 100%;
                max-width: 300px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
			.service-boxes {
    grid-template-columns: repeat(1, 1fr);
}

.creative-row {
    flex-direction: column;
}

.high3Ser {
    flex-direction: column;
}

.highlight {
    grid-template-columns: 100%;
}

.hb-text-wrap {
	width: 100%;
	margin-left: 0;
}

.nav-wrap {
    flex-direction: column;
    align-items: unset;
}

.nav-wrap ul {
    column-gap: 20px;
    justify-content: center;
    margin-top: 30px;
    gap: 50px;
}

.nav-wrap a img {
	width: 36%;
	transform: scale(1);
}

.nav-wrap ul li:last-child {
    position: absolute;
    right: 20px;
    top: 40px;
}

nav {
    padding: 15px 0;
}

.nav-wrap ul li a {
    font-size: 16px;
}

section.herobanner-sect {/* height: 100vh; */}

.hb-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicebox h3 {
    font-size: 22px;
}

.service-boxes p {
    line-height: 28px;
}

.service-wrap h2 {
    font-size: 30px;
}

.multi-heading {
    font-size: 30px;
	    line-height: 1.05;
}

.multi-list .multi-item {
    grid-template-columns: repeat(1, 1fr);
}

.main-heading {
    max-width: 100%;
}

.multi-desc p {
    font-size: 22px;
}

.multi-right p {
    font-size: 18px;
}

.multi-list ul li {}

.creative-heading {
    font-size: 30px;
}

.multiPara {
    grid-template-columns: repeat(1, 1fr);
}

.multiPara h2 {
    font-weight: bold;
	 font-size: 30px;
	     line-height: 1.05;
}

.formGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

.bgGray {
    padding: 15px;
}

.form-container h2 {
    font-size: 35px;
}

.formGrid form {
    padding: 19px;
}

.form-container {
    padding: 0;
    padding-top: 40px;
}

h2.accordion-header span {
    width: 87%;
}

.footer-left {
    grid-template-columns: 100%;
}

footer {
    padding: 10px;
    padding-top: 50px;
}

.logo-section {
    align-items: flex-start;
}

.logo-text img {
    width: 70%;
}

.logo-text {
    display: flex;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column p {
    text-align: left;
}

.footer-right {
    background: #353436;
}

.newsletter {
    text-align: left;
}

.newsletter-form {
    align-items: flex-start;
}

.newsletter button {
    right: 20px;
    top: 15px;
}

.newsletter input {
    width: 100%;
    max-width: 100%;
}

.commonHeading h2 {
    font-size: 30px;
}

.accordion .commonHeading {
    width: 100%;
}
.highContainer {
    display: flex;
    gap: 10px;
}
.high3Ser {
    margin-top: 20px;
    gap: 20px;
}








        }