

html {scroll-behavior: smooth;}
body {
          margin: 0;
    padding: 0;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: #000000;}

	

* {    font-family: 'Barlow','sans-serif';
    position: relative;
    transition: 0.2s;
    
    box-sizing: border-box;}
	
	p,h1,h2,h3,h4,h5 {margin:0px;}

a {text-decoration:none;color:unset;}
	
	
/* --- Base Header Styles --- */
.new-header {
                 background: black;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1000;
    border-bottom: 2px solid #f29b19;
}

.header-container {
          max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    
}

.logo {
              height: 100px;
    border-radius: 100px;
    top: -90px;
    position: absolute;
}

.top_head {      background: black;
    text-align: right;
    color: white;
    padding: 0px 20px;
    }
	
.top_head i{        border: 0px solid;
    padding: 5px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: anchor-center;
    justify-content: center;
    font-size: 28px;
    color: black;
    margin: 0px 3px;
    border-radius: 6px;
    background: #e0e0e0;}

/* Hide checkbox and label on desktop */
.menu-toggle-input, .menu-toggle-label {
    display: none;
}

/* --- Navigation & List Styles (Desktop) --- */
.main-nav {
       flex-grow: 1;
    text-align: right;
    height: 39px;
    margin-top: 15px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; /* Links align to the right */
    align-items: center;
}

.nav-item {
    padding: 0 15px;
    position: relative; /* Essential for dropdown positioning */
}



.nav-list .nav-item a.activetop {
    color: #ff9800;
    font-weight: 600;
}




/* --- Dropdown Menu Styles (Desktop) --- */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Position below the parent link */
    left: 0;
    background-color: #fff;
	color:black;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.nav-item.dropdown:hover .dropdown-menu {
    /* Show on hover */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu  a {
       padding: 10px 20px;
    white-space: nowrap;
    color: black;
    display: block;
}


.appointment_btn {  
  background: #b36e08;
    padding: 7px 15px;
    border-radius: 5px;
	}

/* --- Mobile Styles (Hamburger Menu) --- */
@media (max-width: 900px) { /* Adjust breakpoint as needed */
    .header-container {
        padding: 10px 15px;
    }

    /* Show the hamburger menu icon */
    .menu-toggle-label {
            display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 27px;
    }

    .menu-toggle-label .bar {
            height: 3px;
    width: 100%;
    background-color: #d0d0d0;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
    }

    /* Position and style the main menu for mobile */
    .main-nav {
        position: fixed;
        top: 60px; /* Height of the header */
        right: 0;
        width: 280px; /* Width of the mobile menu */
        height: calc(100% - 60px);
        background-color: #f8f8f8; /* Menu background */
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transform: translateX(100%); /* Start off-screen */
        transition: transform 0.3s ease-in-out;
    }

    /* Display menu when checkbox is checked */
    .menu-toggle-input:checked ~ .main-nav {
        transform: translateX(0);
    }

    .nav-list {
           flex-direction: column;
    align-items: flex-start;
    color: black;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #eee; /* Separator */
    }

    .nav-item a {
           padding: 17px 20px;
    display: block;
    }

    /* Dropdown Styles for Mobile (Open on click/tap) */
.nav-item.dropdown {
    padding: 10px;
}

    .dropdown-menu {
       
        
      
    }

    .dropdown-menu li a {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* Note: To make the mobile dropdown functional without :hover, 
       you'd need a simple JavaScript toggle for the mobile .dropdown-menu 
       to set a specific height/max-height. */
}


	
.mobile_open {display:none;}
.mobile_close {display:none;}
.pc_head {display:inline-block;}

.mobile_background {display:none;}
.pc_background {    position: fixed;
    width: -webkit-fill-available;
    height: auto;
    top: 0;
    left: 0;
    display: block;}
/*Loaders */
.loader_back {         z-index: 100;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fffffffa;}
.loader_box {          width: 50px;
    height: 50px;
    position: relative;
    margin: 200px auto 50px;
    border: 5px solid #FF5722;
    border-left: 5px solid white;
    border-radius: 100px;
    animation: rotateL1 1.1s linear  infinite;
    -webkit-animation: rotateL1 1.1s linear  infinite;
	}


	
@-webkit-keyframes rotateL1 {
	0% {transform:rotate(0deg);}
	100% {transform: rotate(360deg);}
}
	
@keyframes rotateL1 {
	0% {transform:rotate(0deg);}
	100% {transform: rotate(360deg);}
}

	
	
	#marquee {}
	#marquee marquee{        background: #000000;
    color: #ffffff;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;}
	
	
	.head1 {         display: grid;
    grid-template-columns: 33% 51% 16%;
    align-items: start;
    padding: 10px 2px;
    background: white;}
	.head1_logo {}
	.head1_logo img{     width: 300px;
    margin: 10px;
    display: none;}
	.head1_contact {}
	.hd1_cont {          display: inline-grid;
    grid-template-columns: 32px 38% auto;
    width: 291px;
    align-items: center;
    margin: 2px;
    padding: 4px 10px;
    font-size: 14px;}
	
	.hd1_cont img{}
	.hd1_cont b{    font-size: 15px;
    font-weight: 600;
    color: black;}
	.head1_social {      align-items: end;
    display: flex;}
	.head1_social img{    width: 40px;
    margin: 4px;
    height: auto;}
	.head1_social i{        border: 0px solid;
    padding: 6px 5px 5px;
    font-size: 1.7rem;
    width: 41px;
    text-align: center;
    height: 39px;
    border: 1px solid;
    margin: 5px 1px;
    border-radius: 4px;}
	
	
	.head1_social i.fa-facebook {    background: #4141ad;
    color: white;}
	.head1_social i.fa-twitter {}
	.head1_social i.fa-linkedin {background:#0077b5;color:white;}
	.head1_social i.fa-instagram {    background: linear-gradient(45deg, #FF9800, #9C27B0, #3667f6);
    color: white;}
	
	.social-icons {      position: fixed;
    background: linear-gradient(45deg, #4CAF50, green);
    color: white;
    padding: 10px;
    font-size: 38px;
    width: 57px;
    border-radius: 100px;
    text-align: center;
    bottom: 28px;
    left: 10px;
    z-index: 4;}
	.social-icons i{}
	
	.mobile_logo {       width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 7px 15px;}
	
	
	.txt21 {    background: black;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: white;
    padding: 20px;}
	
	
	
	.go_to_top {       display: none;
    background: black;
    width: fit-content;
    padding: 10px;
    position: fixed;
    right: 4px;
    z-index: 3;
    bottom: 107px;
    color: white;
    font-size: 25px;
    border-radius: 2px;
    border: 2px solid #ffffff;}
	/* btns */
	
	.read_more_btn {      background: #b36e08;
    padding: 10px 20px;
    border-radius: 5px;
    width: fit-content;
    color: white;
    font-size: 20px;
    max-width: 250px;
    text-align: center;}
	
	footer {overflow:hidden}
	.footer {        padding: 20px;
    background: #191b1ddb;
    color: white;
    z-index: 2;}
	
	.f_whours {    display: flex;
    font-size: 15px !important;
    width: -webkit-fill-available;
    justify-content: space-between;}
	 .f_whours b{    font-weight: 500;}
	 .f_whours > strong{    color: #ff9800;}
	 
	.back_img {    height: auto;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);}
	.foot_cont {    width: 24%;
    display: inline-grid;
    border: 0px solid;
    padding: 12px;
    vertical-align: text-top;}
	.foot_cont h2{}
	.foot_cont .foot_about{    font-size: 15px;
    padding: 10px 0px;}
	
	.foot_cont h3 {}
	.foot_cont ul {    padding-left: 0px;}
	.foot_cont ul li{       list-style: none;
    font-size: 1rem;
    margin: 5px 0px;transition:0.3s;
	left:0px;
	}
	
	.foot_cont ul li:hover {
		    left: 5px;transition:0.3s;
	}
	.foot_cont ul li i{}
	.foot_cont p{       padding: 10px 2px;
    font-size: 1rem;}
	
	.foot_cont ul.socials {    display: grid;
    grid-template-columns: 50px 50px 50px;}
	.foot_cont ul.socials li{}
	.foot_cont ul.socials li i{      background: #000000;
    padding: 9px;
    margin: 0px;
    font-size: 19px;
    width: 39px;
    border-radius: 4px;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    border: 1px solid #b36e08;}
	
	
	
	.foot {      background: black;
    color: white;
    padding: 23px;
    font-size: 1rem;
    text-align: center;}
	
	
	.hero {      width: -webkit-fill-available;
    overflow: hidden;
    }
	.slider_box {      background: #242424; }
	.slider_box img {
    display: block;
    filter: brightness(0.8);
    width: -webkit-fill-available;
    height: auto;
    background: #2d2d2d;
    bottom: 0;
    position: absolute;
	
}


	.slider_box .slider_txt{         position: absolute;
    z-index: 3;
    padding-right: 30px;
    color: white;
    font-size: 3rem;
    background: #00000000;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: anchor-center;
    justify-content: end;}
	
	.slider_box .slider_txt h1{      text-transform: capitalize;
    text-shadow: 2px 2px 2px black;
    font-size: 35px;
    text-align: right;
    width: 100%;
    padding: 20px 0px;}
	.slider_box .slider_txt p{     padding: 13px 20px;
    font-size: 68px;
    text-align: right;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 0px #b36e08;}
	
	.know_more_btn1 {    background: #000000;
    padding: 10px 20px;
    width: -webkit-fill-available;
    color: white;
    font-size: 22px;
    max-width: 300px;
    text-align: center;
    float: right;
    margin: 0px 20px;
    border: 3px solid white;
    border-radius: 5px;}
	
	.know_more_btn {         background: #f6412d;
    text-align: left;
    padding: 10px 20px;
    border-radius: 1px;
    width: -webkit-fill-available;
    color: white;
    font-size: 1.5rem;
    max-width: 300px;
    text-align: center;}
	
	.scale:hover {
		scale:1.1;
	}
	
	.reveal {scale:0.8;   z-index:1;opacity:0;}
	.fadeactive {z-index:1;
		animation: fadein 0.4s linear forwards;
		-webkit-animation: fadein 0.4s linear forwards;
		-moz-animation: fadein 0.4s linear forwards;
		
		
	}
	
	@keyframes fadein {
		0% {scale:0.8; opacity:0;   }
		60% { opacity:1;   }
		100% {scale:1;   opacity:1; }
	}
	@-webkit-keyframes fadein {
		0% {scale:0.8; opacity:0;   }
		60% { opacity:1;   }
		100% {scale:1;   opacity:1; }
	}
		@-moz-keyframes fadein {
		0% {scale:0.8; opacity:0;   }
		60% { opacity:1;   }
		100% {scale:1;   opacity:1; }
	}
	
	
	
	.slider_top {    height: 500px;}
	
	.center {text-align:center;}
	.self_center {margin:0 auto;}
	.mid_section {        padding: 0rem 0rem;}
	.mid_section p { padding: 1rem;
    
    font-size: 1rem;}
	.title {              font-size: 2.5rem;
    color: #000000;
    font-weight: 600;
    padding: 2rem 10px;
    }
	.title:after {}
	
	.contact_form {       display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;}
	.contact_form img {    width: 100%;
    height: auto;}
	
	.form {                padding: 20px;}
	.form .input_area {           border: 1px solid #000000ab;
    margin: 10px auto;
    max-width: 500px;
    border-radius: 3px;
    color: #cfcfcf;
    position: relative;
    margin-top: 20px;
    background: #ffffff2b;
    padding: 5px;
    padding-top: 10px;}
	
	.form .input_area input,.form .input_area textarea,.form .input_area select {           border: 0px;
    outline: 0px;
    width: 100%;
    color: #ff9b05;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px;
    background: transparent;}
	
	.form .input_area button {      background: #ffc107;
    color: #000000;
    padding: 13px;
    font-size: 20px;
    text-align: center;
    width: 100%;
    font-weight: 600;
    border: 0px;
    border-radius: 6px;}
	
	.form .input_area button:hover {
		scale:1.05;
	}
	
	.form .input_area p {    
                 padding: 2px 2px;
    font-weight: 500;
    position: absolute;
    top: -14px;
    z-index: 2;
    left: 20px;
    color: #ffffff;
    background: #0f0f0f0f;
    font-size: 15px;}
	
	
	.feature_block {    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;}
	.feature_block .fe_box {    width: -webkit-fill-available;
    max-width: 500px;
    
    display: grid;
    grid-template-columns: 30% auto;
    align-items: center;
    height: 215px;
    background: #f1f1f1;
    padding: 1rem;
    margin: 10px auto;}
	
	.feature_block .fe_box img{    width: 100px;
    height: auto;}
	.fe_info h3{    color: black;
    font-size: 1.5rem;
    padding: 3px 0px;}
	.fe_info p{      font-size: 14px;
    text-align: justify;
    font-weight: 500;
    padding: 0px;	}
	
	.error_page_msg {    font-size: 2rem;
    color: #000000;
    padding: 2rem;
    text-align: center;
    padding-bottom: 4rem;}
	
	.title_background {}
	
	.about_us {    max-width: 1200px;
    margin: 0 auto;}
	.about_us p{       white-space: pre-line;
    padding: 0px 2rem;
    color: #dcdcdc;}
	
	.right_ab_img {      }
	
	
	
	.span_txt {    font-size: 1rem;
    display: block;
    padding: 10px 9px;}
	.experience {         color: #000000;
    position: absolute;
    bottom: -31px;
    z-index: 2;
    background: #ffe250;
    font-size: 3rem;
    font-weight: 700;
    padding: 10px 20px;
    left: 30px;
    width: fit-content;
    border-left: 4px solid black;
    display: grid;
    grid-template-columns: 200px 200px;}
	
	.experience:after {
              position: absolute;
    content: '';
    border: 63px solid #FFC107;
    top: 15px;
    border-right-color: transparent;
    right: -78px;	
}

.tx_in {    display: block;
    font-size: 41px;}
	
	.user_card {          background: #fafafa;
    width: -webkit-fill-available;
    overflow: hidden;
    margin: 3rem auto;
    padding: 20px;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 200px auto;
    align-items: start;}
	.user_card img{    width: 100%;}
	.user_card h3{       color: black;
    font-size: 1.5rem;
    padding: 1rem;}
	.user_card h4{       color: black;
    margin: 0px 0px;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem;}
	
	.grid_2 {    display: grid;
    grid-template-columns: 50% 50%;
    color: black;
	}
	  .padding_2 {    padding: 2rem 0px;}
	  .margin_2_center {    margin: 2rem auto;}
	  .margin_2 {    margin: 2rem 0px;}
	
	.left_block,.right_block {    text-align: right;
    padding: 20px;
    width: 80%;
    background: #f1f1f1;
    color: black;
    margin: 0 auto;}
	.right_block {  text-align: left;}
	
	.grid_2 h3 {       font-size: 1.5rem;
    padding: 10px 0px;
    font-weight: 700;}
	
	
	.grid_2 p {    font-size: 16px;
    padding: 10px 0px;}
	
	.nav_tabs {    display: inline-grid;
    margin-left: 0px;
    padding: 0px;}
	
	.nav_tabs .tablinks{        padding: 9px 15px;
    background: #ffffff;
    margin: 1px;
    font-weight: 500;
    color: black;
    font-size: 1rem;
    border: 1px solid #e9e9e9;}
	
	.active{          background: #FF5722 !important;
    color: white !important;}
	
	
	
	.active:after {
    position: absolute;
    content: '';
    border: 1px solid black;
    border: 19px solid transparent;
    border-left: 19px solid #e32525;
    right: -36px;
    top: 0px;
    z-index: 2;
}
	.tab-content {        width: 100%;
    background: #fbfbfb;
    display: inline-grid;
    margin-left: 0px;
    vertical-align: top;
    padding: 0px 2rem;
    top: 15px;
    border: 2px solid red;
    height: auto;
    min-height: 90vh;
    padding-bottom: 43px;}
	.tab-content .tab-pane{ display: none;}
	.tab-content .tab-pane h2{    font-size: 1.5rem;
    padding: 1rem 0px;
    color: black;}
	.tab-content .tab-pane h3{    font-size: 1.5rem;
    padding: 1rem 0px;
    color: black;}
	.tab-content .tab-pane p{    white-space: pre-line;
    color: #535353;
    font-size: 1rem;}
	
	
	.tab_grid {       display: grid;
    grid-template-columns: 30% 70%;
    margin: 2px auto 2rem;
    align-items: start;}
	
	#p_disclaimer {    font-size: 12px;
    padding: 20px 0px;
    margin-bottom: 47px;}
	
	.title_2 {    font-size: 2rem;
    font-weight: 600;
    color: #830707;}
	
	.options {    width: 90%;
    margin: 0 auto;}
	.options h3{    margin-top: 2rem;
    font-size: 1.5rem;
    color: black;
    padding: 17px 17px 0px;}
	.options p{    background: #fcfcfc; padding: 1rem;
    color: black;
    font-size: 1rem;}
	
	.schools {      display: inline-grid;
    margin: 2rem 1rem;
    border: 1px solid #e1e1e1;
    height: 100px;
    vertical-align: text-top;
    align-items: center;
    text-align: center;
    background: #ffffff;
    width: auto;}
	
	.schools img {width:auto;}
	.schools img:hover  {scale:1.1}
	
	.address_details {      padding: 1rem;
    text-align: center;}
	
	.address_line {        display: inline-grid;
    width: 45%;
    background: #f7f7f7;
    padding: 2rem;
    margin: 1rem;
    color: black;
    min-height: 400px;}
	.address_line h3{}
	.address_line h2{}
	.address_line p{    white-space: pre-line;
    font-weight: 500;}
	
	.g_location {    background: #ca1010;
    color: white;
    padding: 10px;
    width: fit-content;
    text-align: left;
    border-radius: 2px;
    font-weight: 600;
    padding: 10px 30px;}
	
	.entry-content {}
	.entry-content h3{    color: #d41212;
    padding: 10px;
    margin-top: 1rem;
    margin-left: 24px;
    font-size: 1.5rem;
    width: fit-content;}
	.entry-content p{}
	
	
	
	#map_location {    border: 0;
    width: 80%;
    min-height: 500px;
    display: block;
    margin: 1rem auto;
    border: 2px solid red;}
	
	.why_us {
           color: black;
    margin: 0px 1rem;
    width: auto;
    display: inline-block;
    vertical-align: text-top;
    height: 300px;
    text-align: justify;
    display: inline-grid;
}
	.why_us h3{}
	
	

.why_us h3 i {    color: #F44336;
    padding: 2px 8px 2px 0px;}
	.why_us p{    padding: 1rem 0px;}
	
	.visa_about {    width: 90%;
    margin: 1rem auto;}
	.visa_about h3{}
	.visa_about p{        font-size: 1rem;
    
    font-weight: 500;
    white-space: pre-line;}
	
	.image_gallery {            text-align: center;
    height: fit-content;
    width: 90% !important;
    margin: 20px auto;}
	
	.image_gallery img {          max-width: 320px;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    background: #f1f1f1;
    padding: 0px;
    border-radius: 7px;}
	.image_gallery img:hover {scale:0.95;}
	
	.certi {       width: -webkit-fill-available;
    max-width: 31%;
    padding: 15px;
    margin: 13px 10px 2rem;
    display: inline-block;
    border: 3px solid #d75349;
    height: 300px;
    vertical-align: text-top;
    border-radius: 9px;
	text-align:center;
	}
	
	.certi:hover img{
		scale:0.95;
	}
	.certi h3{    padding: 1rem;
    color: black;
    text-align: center;
    font-size: 1.5rem;}
	.certi img{          width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;}
	
	.top_image {        width: 100%;
    overflow: hidden;
    height: 300px;}
	.top_image img{        width: -webkit-fill-available;
    max-height: 300px;
    filter: brightness(0.5);}
	.top_image .top_txt{    width: 100%;
    position: absolute;
    z-index: 2;
    color: #ffffff;
    left: 100px;
    top: 82px;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-align: center;}
	.top_image .top_txt h1{      font-size: 5rem;
    margin: 0px 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px black;}
	
	.title_3 {
    font-size: 2rem;
    color: #000000;
    font-weight: 600;
    padding: 2rem 10px;
}
	.star_5 {    color: #FF5722;
    display: inline;
    font-size: 2rem;
    vertical-align: text-bottom;}
	
.why_us_content {        color: white;
    padding-bottom: 50px;
    }

.why_box {        width: 150px;
    display: inline-block;
    align-items: start;
    vertical-align: text-top;
    margin: 10px;
    font-size: 16px;}
	
.why_box img {        width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    padding: 20px;}
.why_box p {      color: #d4d4d4;
    font-size: 14px;
    font-weight: 600;}
/* Content */
.title {
      font-size: 36px;
    font-weight: 600;
    color: #fdcc1f;
    margin-bottom: 50px;
}

.why_us {
  list-style: none;
  padding: 0;
}

.why_us li {
  font-size: 18px;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}

/* Check icon */
.why_us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e8fff;
  font-weight: bold;
}



/* Responsive */
@media (max-width: 900px) {
  .why_wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why_us li {
    padding-left: 0;
  }

  .why_us li::before {
    display: none;
  }
}




.counseling-container {
   
    max-width: 1200px;
    margin: 20px auto;
    line-height: 1.6;
}

/* Process Banner (Blue Background Section) */
.process-banner {
    background-color: black;
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.process-banner h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}



.step-number {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: bold;
}

.icon {
    font-size: 1.5rem;
    margin-top: 10px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Support Details (White Section) */
.support-details {
       padding: 40px 20px;
}

.support-details h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.support-details ol {
    padding-left: 0;
    list-style-position: inside;
}

.support-details li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    list-style-type: decimal;
}

.support-details li strong {
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}


        .container {
            max-width: 1200px;
            margin: auto;
            padding: 60px 20px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
                   font-size: 36px;
    font-weight: 600;
    color: #fdcc1f;
    margin-bottom: 50px;
        }

        /* Services Cards */
        .services-grid {
                display: grid;
    grid-template-columns: 49% 49%;
    gap: 30px;
    margin-bottom: 60px;
        }

        .service-card {
                color: white;
    background: linear-gradient(45deg, #303030, #191616);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #fff4e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #;
        }

        .service-card h3 {
                  font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fdcc1f;
        }

        .service-card p {
                 font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
        }

        .service-card a {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: #ff9800;
        }

        /* Detailed Content */
        .service-details {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .service-details p {
               font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #ffffff;
        }

        .service-details strong {
               color: #ffb74d;
    font-size: 20px;
    padding-right: 10px;
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 28px;
            }
			
			.services-grid {
    
    grid-template-columns: 100%;
    
}
        }
		



.container {
    max-width: 1100px;
    margin: 0 auto;
}

.header h5 {
    color: #555;
    font-size: 14px;
    margin-bottom: 5px;
}

.header h1 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.underline {
    width: 50px;
    height: 3px;
    background-color: #1a237e; /* Dark blue underline */
    margin-bottom: 40px;
}

/* Layout Wrapper */
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Form Styles */
.contact-form {
    flex: 2;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form  input,.contact-form  textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
    margin-bottom: 20px;
}

.btn-send {
    background-color: #ffb400; /* Yellow Button */
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Info Styles */
.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-box {
    background-color: #ffb400;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;margin: 5px auto;
}

.text-box strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.text-box p {
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

/* RESPONSIVE DESIGN FOR PHONE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column; /* Stack vertically */
    }

    .input-group {
        flex-direction: column; /* Stack name and email */
    }

    .contact-info {
        margin-top: 30px;
    }
    
    .header h1 {
        font-size: 26px;
    }
}


.get_to_know {    display: grid;
    grid-template-columns: 60% 40%;
    align-items: anchor-center;}

.txt_cont {   }
.txt_cont p{    font-size: 16px;
    padding: 20px;
    white-space: pre-line;   }

.txt_cont h3{ color: #FF9800;
    padding: 20px;
    font-size: 20px;}
.txt_cont h2{    font-size: 30px;
    padding: 20px;}


.get_to_know img {    filter: invert(1);
    width: 100%;}
	
	#flight_top {    position: absolute;
    top: -14px;
    width: 300px;}