@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #48C0BF;
    --orange--: #F88F26;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Roboto", serif;
    /* background: #ecf0fa; */
    /* background: #F5F5F5; */
    background: #FFF8F8;
    color: #231F20;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

p{
    margin: 0;
    font-size: 16px;
}

section{
    overflow: hidden;
}

.prealoader{
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    z-index: 9999;
    background: #fff;
}

.LoaderBalls {
    width: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.LoaderBalls__item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color--);
}
.LoaderBalls__item:nth-child(1) {
    animation: bouncing 0.4s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95);
}
.LoaderBalls__item:nth-child(2) {
    animation: bouncing 0.4s 0.1s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}
.LoaderBalls__item:nth-child(3) {
    animation: bouncing 0.4s 0.2s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}
  
@keyframes bouncing {
    0% {
      transform: translate3d(0, 10px, 0) scale(1.2, 0.85);
    }
    100% {
      transform: translate3d(0, -20px, 0) scale(0.9, 1.1);
    }
}

header{
    display: flex;
    justify-content: space-between;
    padding: 10px 5%;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

header nav > ul{
    display: flex;
    gap: 30px;
}

header nav > ul > li > a{
    color: #4E4E4E; 
    transition: 0.3s;
    padding: 30px 0;
}

header nav > ul > li > a:hover{
    color: var(--orange--);
}

header nav ul li.drop_menu_li > a::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
    font-size: 16px;
    display: inline-block;
    transition: .3s;
}


header nav ul li.drop_menu_li:hover > a::after {
    transform: rotateX(180deg);  
}

header nav ul li .drop_menu{
    position: absolute;
    top: 90%;
    z-index: 2;
    background: #fff;
    width: 200px;
    /* padding: 10px 5px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transform: translateY(50px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

header nav ul li .drop_menu ul{
    flex-direction: column;
    gap: 5px;
}

header nav ul li:hover .drop_menu{
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

header nav ul li .drop_menu ul li{
    padding: 0;
    /* margin-bottom: 5px; */
}

header nav ul li .drop_menu ul li:not(:last-child){
    border-bottom: 1px solid #4444441c;
}

header nav ul li .drop_menu ul li{
    /* border: none; */
}

header nav ul li .drop_menu ul li a{
    color: #4E4E4E;
    padding: 15px 10px;
    /* background: #0003; */
    /* background: var(--primary-color--);
    border: 1px solid var(--primary-color--); */
    display: block;
    /* border: none; */
    transition: 0.3s;
}

header nav ul li .drop_menu ul li a:hover{
    background: #f88f2636;
    color: var(--orange--);
}

header .menu-btn{
    display: none;
    flex-direction: column;
    gap: 5px;
    margin: auto 0;
    cursor: pointer;
}
header .menu-btn span{
    display: inline-block;
    width: 30px;
    height: 2px;
    /* background: #0c2d35; */
    /* background: #fff; */
    background: var(--orange--);
}

header.active .menu-btn span{
    /* background: var(--blue--); */
}

header .menu-btn.active span{
    background: none;
}

header .menu-btn span:nth-child(1){
    width: 50%;
    transition: 0.3s;
}
header .menu-btn:hover span:nth-child(1){
    width: 100%;
}
header .menu-btn span:nth-child(2){
    position: relative;
}
header .menu-btn span:nth-child(2)::before, header .menu-btn span:nth-child(2)::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0);
    background: var(--orange--);
    /* background: #fff; */
    transition: 0.5s ease-in-out;
}

header.active .menu-btn span:nth-child(2)::before, header.active .menu-btn span:nth-child(2)::after{
    /* background: var(--blue--); */
}
header .menu-btn.active span:nth-child(2)::before{
    transform: rotate(-45deg);
    opacity: 1;
}
header .menu-btn.active span:nth-child(2)::after{
    transform: rotate(45deg);
    opacity: 1;
}
header .menu-btn span:nth-child(3){
    width: 50%;
    transition: 0.3s;
    margin-left: auto;
}

header .menu-btn:hover span:nth-child(3){
    width: 100%;
}

header .mobile_menu{
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 10px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.3s ease-in-out;
    border-top: 1px solid var(--orange--);
}

header .mobile_menu.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .mobile_menu ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

header .mobile_menu > ul > li{
    border: 1px solid var(--orange--);
}

header .mobile_menu > ul > li > a{
    display: block;
    text-align: center;
    padding: 10px 10px;
    background: #f88f2636;
    color: var(--orange--);
}

header .mobile_menu .drop_menu{
    display: none;
}

header .mobile_menu .drop_menu ul li a{
    color:  #4E4E4E;
    display: block;
    text-align: center;
    padding: 10px 5px;
}


.book_btn{
    display: inline-block;
    padding: 15px 20px;
    background: var(--primary-color--);
    color: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.book_btn:hover{
    color: #fff;
    transform: scale(1.1);
}

.book_btn i{
    transform: rotate(-45deg);
    margin-left: 5px;
}

.banner_bg{
    background: #FFF2E9;
	position: relative;
}

.banner{
    width: 100%;
    position: relative;
    display: flex;
    height: calc(100vh - 80px);
    align-items: center;
}

.banner .content{
    width: 47%;
    padding-left: 4%;
    /* margin-right: 4%; */
    position: relative;
    z-index: 2;
}

.banner .content h2{
    font-size: 4vw;
    font-weight: 600;
}

.banner .content h2 span{
    color: var(--orange--);
}

.banner .content p{
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.banner .content p i{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    flex: 0 0 auto;
    margin-top: 5px;
}

.banner .banner_img{
    width: 60%;
    position: absolute;
    right: 2%;
    bottom: 2%;
    z-index: 1;
    height: 100%;
}

.banner .banner_img img{
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.heading h2{
    font-size: 52px;
	color: #2D2D2D;
    font-weight: 600;
}

.heading_3 h2{
/*     font-size: 52px; */
    font-size: 32px;
    color: #2D2D2D;
    font-weight: 600;
	margin-bottom: 10px;
}

.heading_3 p{
    font-size: 18px;
    color: #52525B;
    font-weight: 400;
}

.heading_2{
    font-size: 46px;
    font-weight: 600;
    color: #2D2D2D;
}

.heading_2 span{
    color: var(--orange--);
}

.big_content p{
    font-size: 20px;
    font-weight: 500;
}

.list_content ul{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.list_content ul li{
    font-size: 18px;
    display: flex;
    gap: 10px;
	font-size: 20px;
}

.list_content ul li i{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    flex: 0 0 auto;
    margin-top: 5px;
}

.book_border_btn{
    border: 1px solid var(--primary-color--);
    color: var(--primary-color--);
    background: none;
}

.book_border_btn:hover{
    background: var(--primary-color--);
}

.heading_card{
    padding: 40px;
    background: #FEF5E4;
    border-radius: 20px;
    height: 100%;
}

.stay_connected_card{
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
}

.stay_connected_card img{
    width: 60px;
}

.stay_connected_card h3{
    font-family: "Roboto", serif;
    font-size: 24px;
    color: var(--orange--);
}

.stay_connected_card p{
    font-size: 18px;
}

.book_p{
    color: #4B4B4BBF;
    font-size: 18px;
}

.book_card{
    background: #FFF2E9;
    padding: 40px 30px;
    border-radius: 10px;
}

footer{
    background: #F97316;
}

.footer_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_logo img{
    width: 50px;
}

.footer_icons ul{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_icons ul li a{
    color: #fff;
    font-size: 18px;
}

.copy_right{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.copy_right p{
    color: #ECECEC;
    font-size: 16px;
}

.copy_right ul{
    display: flex;
    gap: 40px;
}

.copy_right ul li a{
    color: #ECECEC;
}

.book_now_modal{
    border: 3px solid var(--orange--);
    border-radius: 15px;
}

.book_now_modal .modal-body{
    padding: 20px 30px 40px 30px;
}

.book_now_modal .btn-close{
    opacity: 1;
}

.book_now_modal .modal-header{
    border: none;
    position: relative;
    z-index: 2;
}

.book_now_modal .logo{
    text-align: center;
    margin-top: -40px;
}

.book_now_modal .logo img{
    width: 140px;
}

.modal_heading p{
    font-weight: 500;
}

.modal_heading p.heading{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.book_now_form .input-group{
    background: none;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.book_now_form .input-group i{
    color: var(--orange--);
    font-size: 22px;
}

.book_now_form .input-group-text{
    background: none;
    border: none;
}

.book_now_form .form-control{
    /* border: none; */
    box-shadow: none !important;
    padding: 10px 20px;
}

.book_now_form .form-label{
    font-weight: 500;
}

.book_now_form button{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}

.why_choose_us_bg{
    position: relative;
    z-index: 2;
}

.why_choose_us_bg .why_choose_us_img_1{
    position: absolute;
    right: 0;
    top: 15%;
    width: 30%;
    z-index: -1;
}

.why_choose_us_bg .why_choose_us_img_2{
    position: absolute;
    right: 0;
    top: 0%;
    width: 50%;
    z-index: -1;
}

.community_bg{
    position: relative;
}

.community_bg .community_bg_img{
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 10%;
    z-index: -1;
}

.community_bg .community_bg_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner_inner .content_services{
    width: 100%;
/*     padding-left: 4%; */
    /* margin-right: 4%; */
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner_inner .content_services h2{
/*     font-size: 4vw; */
    font-size: 48px;
    font-weight: 600;
    color: #2d2d2d;
}

.banner_inner .content_services h2 span{
    color: var(--orange--);
}

.banner_inner .content_services p{
    font-size: 24px;
    gap: 10px;
    text-align: center;
    color: #52525b;
}

.banner_inner .content_services p i{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    flex: 0 0 auto;
    margin-top: 5px;
}
.banner_bg .banner_all_bg{
    position: absolute;
    /* right: 20%; */
/*     right: 30%;
    top: 15%; */
    /* width: 65%; */
/*     width: 43%;
    z-index: -1; */
    /* left: 0; */
 	width: 80%;
	max-width: 584px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 1;
	height: 90%;
}
.banner_bg .banner_all_bg img{
	height: 100%;
	object-fit: contain;
    object-position: bottom;
}
.banner_bg .banner_all_bg_2{
    position: absolute;
    right: 0px;
    top: 40%;
    width: 23%;
    z-index: -1;
    left: 43%;

}
.banner_inner{
    width: 100%;
    max-width: 747px;
    position: relative;
    display: flex;
    /* height: calc(100vh - 80px); */
/*     height: calc(68vh - 80px); */
    align-items: center;
	padding: 128px 0;
    margin: 0 auto;
	z-index: 2;
}
.most_request_bg{
    position: relative;
    z-index: 2;
    background-color: #FFF8F8;
}

.most_request_bg .why_choose_us_img_1{
    position: absolute;
    right: 0;
    top: 15%;
    width: 30%;
    z-index: -1;
}

.most_request_bg .why_choose_us_img_2{
    position: absolute;
    right: 0;
    top: 0%;
    width: 50%;
    z-index: -1;
}
/* .most_request_card {
    background: #fff;
    border-radius: 20px;
    padding: 12px 16px;
    height: 100%;
} */
.most_request_card {
    background: #fff;
    border-radius: 20px;
    padding: 12px 12px;
    height: 160px;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
}
.most_request_card .card-body{
	padding:0;
}
.most_request_card img {
/*     width: 60px; */
    width: 40px;
}
.most_request_card .card-body p {
    color: #2d2d2d;
	font-size: 16px;
}
.most_request_card .card-body .big_content {
    color: #2d2d2d;
}
.why_choose_services {
    background-color: #FFF2E9;
}
.why_choose_services .heading p{
    color: #52525b;
}
.why_choose_services .list_content ul li i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #039855;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    flex: 0 0 auto;
    margin-top: 5px;
}

.why_choose_services .heading {
    padding-top: 48px;
}

.badge_h {
    background-color: #fff;
    border: 1px solid#DDDDDD;
    color: #2d2d2d;
    padding: 8px 12px;
    gap:10px;
    display: inline-block;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}
.steps-container {
    position: relative;
  }
  
  .step-line {
    position: absolute;
    left: 36px !important;
    top: 80px;
    height: calc(100% - 200px);
    border-left: 2px dashed #ccc;
    z-index: 0;
  }
  
  .step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 40px;
    flex-shrink: 0;
  }
  
  .step-content {
    flex: 1;
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .step-text {
    padding: 30px;
    flex: 1;
  }
  
  .step-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .step-description {
    color: #555;
    font-size: 16px;
    width: 400px;
  }
  
  .step-image {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .step-image img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .step-content {
      flex-direction: column;
    }
    
    .step-image {
      max-width: 100%;
    }
    
    .step-line {
      left: 0px;
    }
    
    .step-number {
      margin-right: 20px;
    }
  }

 .getting_help {
    padding-top: 48px;
    padding-bottom: 40px;
 }
 
 .accordion {
    margin-top: 40px;
  }
  
  .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
  }
  
  .accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }
  
  .accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
  }
  
  .accordion-icon {
    width: 24px;
    height: 24px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .accordion-icon.active {
    transform: rotate(180deg);
  }
  
  .accordion-icon:before {
    content: "+";
    font-size: 20px;
    color: #555;
  }
  
  .accordion-icon.minus:before {
    content: "−";
  }
  
  .accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-content.active {
    padding: 0 20px 20px;
    max-height: 200px;
  }
  
  .accordion-content p {
    color: #666;
  }

  .call_btn_2 {
    background-color: none;
    border: 1px solid #43C1C0;
    padding: 16px;
    gap:8px;
    border-radius: 4px;
    color: #43C1C0;
    display: inline-block;
  }
  .inte_btn {
    background-color: #48c0bf;
    border: 1px solid #43C1C0;
    padding: 16px;
    gap:8px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
  }

  .leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.leader-card {
    width: 330px;
    margin-bottom: 40px;
    background: #fff;
    padding: 13px;
    border-radius: 15px;
	transition: 0.3s;
}

.leader-card:hover{
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.leader-image {
    width: 100%;
    /* height: 270px; */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}

.leader-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.4;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #0077b5;
}

.discription h4 {
    font-size: 32px;
    line-height: 150%;
}
.discription {
    padding: 28px 28px 28px 0;
}

.paragraph {
    margin-bottom: 40px;
}

.paragraph p {
    font-size: 32px;
}
.quote {
    border-left: 3px solid #ff7e00;
    padding-left: 20px;
    margin: 30px 0;
}

.quote p {
    font-size:32px;
    /* color: #444; */
    color: var(--orange--);
    margin-bottom: 10px;
    font-weight: 500;
}
.new-disc h4 {
    font-size: 32px;
    line-height: 150%;
}
.vm-v {
    background-color: #FFF2E9;
    padding: 80px 120px;
}
.card_vm {
    background-color: #FFE1CC;
    padding: 32px;
    border-radius: 16px;
    height: 100%;
}
.card_vm h3{
	font-size: 32px;
	font-weight: 500;
}
.card_vm p{
	font-size: 24px;
	font-weight: 400;
}
 /* Cards layout */
.what-we .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.bottom-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.what-we .card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.what-we .icon {
    margin-bottom: 20px;
    color: #ff7e00;
    font-size: 2rem;
}

.what-we .card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.what-we .card p {
    color: #555;
    font-size: 18px;
}

/* Icons */
.what-we .icon svg {
    width: 40px;
    height: 40px;
/*     fill: #ff7e00; */
}
.sec-div {
    margin: 0 auto;
    padding: 40px 0px;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.left-content {
    width: calc(50% - 40px);
}
    
.right-content {
    width: calc(50% - 40px);
}
.headline-top {
    color: #222;
}
    
.headline-bottom {
    color: #777;
    font-weight: normal;
}
        
.sec-div p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}
    /* Contact section layout */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 2;
    min-width: 400px;
    position: relative;
}

/* Office styles */
.office {
    margin-bottom: 30px;
}

.office-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.office-title svg {
    margin-right: 10px;
}

.office-address {
    font-size: 1rem;
    line-height: 1.6;
/*     margin-left: 30px; */
}

/* Map styles */

.map {
    background-color: #FFF2E9;
    padding: 60px 120px;
}

.world-map {
    width: 100%;
    height: auto;
}

.map-marker {
    position: absolute;
}

.srilanka-flag {
        /* position: absolute; */
        top: 0%;
        left: 35%;
        /* width: 40px; */
        height: auto;
    /* position: absolute;
    top: 45%;
    left: 67%;
    width: 40px;
    height: auto; */
    width: 100%;
}

.india-highlight {
    position: absolute;
    top: 35%;
    left: 66%;
    width: 60px;
    height: auto;
    fill: #FF9933;
}




.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.nav-link.active {
    color: #FF8A00;
    border-bottom: 2px solid #FF8A00;
}

.nav-link:hover {
    color: #FF8A00;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-icon {
    margin-left: 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #FF8A00;
}  

.h_gradient{
	position: relative;
	color: #2d2d2d !important;
}

.h_gradient img{
	position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-30%);
    z-index: -1;
}

.call_us_p{
	font-size: 16px !important;
}

.vs_bg{
	background: #FFF2E9;
}
.f_24{
	font-size: 24px;
}

.text_gradient{
	background: linear-gradient(165deg, #000000 8.35%, #FCFCFC 79.86%);
    font-size: 40px;
	font-weight: 700;
    /* background: -webkit-linear-gradient(135deg, #000000 8.35%, #FCFCFC 79.86%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.connect_heading{
	font-weight: 500;
	font-size: 40px;
	color:#2D2D2D;
}

.connect_bg{
	background: #FFF2E9;
}

.down_arrow_about{
	position: relative;
}	

.down_arrow_about .down_arrow_a{
	position: absolute;
	right: 5%;
	top: 4%;
}