*{
    margin: 0;
    padding: 0;
}




/***********************************************************Custom Fonts ***************************************/
@font-face {
  font-family: 'BorgiaPro';
  src: url('/fonts/BorgiaPro-Regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/BorgiaPro-Regular.eot?#iefix') format('embedded-opentype'), /* IE6–IE8 */
       url('/fonts/BorgiaPro-Regular.woff2') format('woff2'), /* Super modern browsers */
       url('/fonts/BorgiaPro-Regular.woff') format('woff'), /* Modern browsers */
       url('/fonts/BorgiaPro-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/BorgiaPro-Regular.svg#BorgiaPro') format('svg'); /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
}

/*_______________________________________________________________________________________________*/


  .navbar-brand {
    font-family: 'Georgia', cursive;
    font-size: 28px;
    color: white;
  }
  .navbar-brand:hover {
    color: #ddd;
  }
  .navbar-nav .nav-link {
    color: white;
    margin-right: 15px;
  }
  .navbar-nav .nav-link:hover {
    color: #00d4ff;
  }
  .phone-icon {
    color: gold;
  }
  .login-icon {
    color: gold;
    margin-left: 5px;
  }
  .dropdown-toggle::after {
    margin-left: 5px;
  }

.navbar .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}


.dropdown-submenu > .dropdown-toggle::after {
 
content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid white;
}


.dropdown-submenu > .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu {
  transition: all 0.3s ease;
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1000;
  margin-left: 0.1rem;
}

  /* hero section */

  .hero-section {
    background-image: url('../IMAGES/bannerimg.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .social-icons i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    display: block;
  }
  
  .text-warning p{
      font-size:1rem;
  }

  .services-section {
    padding: 80px 0;
  }

  .services-bg {
    position: relative;
    background: url('../IMAGES/F-6.jpeg') no-repeat center center/cover;
    border-radius: 12px;
    padding: 80px 100px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  .services-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    z-index: 0;
  }
  
  .services-bg .row {
    position: relative;
    z-index: 1;
  }


  .service-box {
    background-color: transparent;
    border-radius: 8px;
    padding: 45px;
    height: 100%;
    transition: background 0.3s ease;
    color: white;
    max-width: 100%;
  word-wrap: break-word;
  }

  .service-box:hover {
    background-color: #d4af71;
    color: #fff !important;
  }

  .service-box:hover i,
  .service-box:hover h5,
  .service-box:hover p {
    color: #fff;
  }

  .service-icon {
    font-size: 2rem;
    color: #d4af71;
    margin-bottom: 15px;
    display: inline-block;
  }

  .btn-custom {
    background-color: #c09b5e;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease; 
    text-decoration: none;     
    display: inline-block;     
  }
  
  .btn-custom:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;    
  }



  .about-section {
    background-image: url('../IMAGES/aboutus_dot.jpg');
    position: relative;
    overflow: hidden;
    padding: 5rem 1rem;
  }

  .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;

  }

  .image-wrapper img {
    width: 500px; 
    height: auto;
    border-radius: 12px;
    display: block;
     margin: 0 auto;
  }

  .features-box {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #deb97f;
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    z-index: 2;
    display: block;
  }

  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .feature-item i {
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
  }

  .feature-item h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .feature-item p {
    color: #f0f0f0;
    margin: 0;
    font-size: 0.9rem;
  }

  .about-heading span {
    letter-spacing: 2px;
    color: #deb97f;
    font-size: 2rem;
  }

  .about-heading h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0;
  }

  .about-text p {
    color: #cfcfcf;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .btn-about {
    background-color: transparent;
    border: 2px solid #deb97f;
    color: #deb97f;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
  }

  .btn-about:hover {
    background-color: #deb97f;
    color: #0d0d0d;
  }


  /* benefit section */

 
  .benefits-section {
    background-color: #fdfdfd;
    margin-top: 1rem;
    
  }
  
  .section-label {
    color: #cfa96f;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e1e1e;
  }
  
  .section-description {
    color: #666;
    font-size: 1rem;
  }
  
  .benefit-item {
    margin-left: 80px;
  }
  
  .benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d3ad6d;
    margin-bottom: 10px;
  }
  
  .benefit-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #1e1e1e;
  }
  
  .benefit-text {
    font-size: 0.95rem;
    color: #666;
  }

  .benefits-section span{
    font-size: 1.5rem;
    margin-top: 5rem;
  }

  /* Benifit section */
  
  
  .enquire-section {
      
 position: relative;
  min-height: 100vh;
  background: url('https://kfkit.rometheme.pro/flights/wp-content/uploads/sites/23/2022/04/F-4.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 20px;
  z-index: 1;
      
  }
  
  .enquire-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  .enquire-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .enquire-subtext {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
  }
  
  .jetsteals-section .bg-beige {
    background-color: #f2e9db;
  }
  
  .legend-box {
    background-color: #fff;
  }
  
  .btn-gold {
    background-color: #b0893f;
    border: none;
  }
  
  .btn-gold:hover {
    background-color: #926f2f;
  }
  
  .dot {
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 4px;
  }
  
  .dot.active {
    background-color: #b0893f;
  }


  .signup-section {
    padding: 60px 20px;
    text-align: center;
  }

  .signup-section h3 {
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
  }

  .signup-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .signup-form input {
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    flex: 1 1 200px;
    background-color: #f1f1f7;
  }

  .signup-form button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 25px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex: 1 1 150px;
  }

  .signup-form button:hover {
    background-color: #000;
  }

  .privacy-text {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
  }

  .privacy-text a {
    color: #0000ee;
    text-decoration: underline;
  }
  
  .footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .social-icons a {
  transition: transform 0.3s;
}

.footer .social-icons a:hover {
  transform: scale(1.1);
}
  
.logo-icon,
.logo-text {
  max-width: 100%;
  height: auto;
  display: block;
}


.logo-icon {
  max-width: 80px;
}

.logo-text {
  max-height: 60px;
}

  .logo-wrapper {
  overflow-x: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
}



/* --------------------------------------MEDIA QUERY--------------------------------------------- */
@media (max-width: 400px) {
  .navbar-brand h6 {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    line-height: 1.1;
    text-align: left;
    white-space: normal;
  }

  .navbar-brand span {
    font-size: 8px !important;
    letter-spacing: 3px !important;
    top: -4px !important;
  }

  .navbar-brand img {
    height: 30px !important;
  }
  


}



@media (max-width: 350px) {
  .navbar-brand h6 span {
    display: none; 
  }
   .navbar-brand img {
    height: 50px;
  }
  

}



@media (max-width: 575.98px) {
  .navbar-brand h6 {
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    margin-right: 0;
    padding: 8px 12px;
    text-align: left;
  }
  
  /* .dropdown-submenu > .dropdown-menu {*/
  /*  position: relative !important;*/
  /*  top: 0 !important;*/
  /*  left: 0 !important;*/
  /*  margin-left: 0 !important;*/
  /*  width: 100% !important;*/
  /*  display: none;*/
  /*}*/

  /*.dropdown-submenu:hover > .dropdown-menu {*/
  /*  display: block;*/
  /*}*/

  /* Optional: Adjust arrow for mobile submenu */
  /*.dropdown-submenu > .dropdown-toggle::after {*/
  /*  border-left: none;*/
  /*  border-top: 0.3em solid white;*/
  /*  border-right: 0.3em solid transparent;*/
  /*  border-left: 0.3em solid transparent;*/
  /*  margin-left: auto;*/
  /*}*/

  .dropdown-menu {
    position: absolute;
  }

  .dropdown-submenu .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 1rem;
    background-color: #1a1a1a;
    display: none;
    width: 100%;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: none;
  }

  .dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(90deg);
    margin-left: auto;
  }

  .dropdown-submenu > .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
.hero-section {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem;
    display: block !important;
    text-align: center;
  }
  .hero-section .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section .col-md-5,
  .hero-section .col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 200px;
    height: auto;
  }

  h1.display-4 {
    font-size: 1.2rem;
    line-height: 1.1;
  }

  .hero-section h3{
    font-size: 1rem;
  }

  .hero-section p {
    font-size: 0.75rem;
  }

  .hero-section .btn {
    font-size: 0.755rem;
    padding: 0.5rem 1.25rem;
  }
  .services-bg {
    padding: 20px 10px;
    background: none;
  }

  .services-bg::before {
    display: none;
  }

  .service-box {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 100%; /* ensure full width */
  }

  .service-box h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .service-box p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .service-icon {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #d4af71;
  }
  
  .services-section {
    padding: 30px 0;
  }
  
  .about-section {
    padding: 2rem 1rem;
  }
  
  .features-box {
      
    display: none;
  }


  .about-heading h1 {
    font-size: 1.2rem;
  }

  .about-heading span {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.75rem;
  }

  .image-wrapper img {
    width: 100%;
    margin-top: 1rem;
  }
  
  .section-title{
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.75rem;
    text-align: center;
  }



.benefits-section {

    margin-top: -30px;
    
  }
  .benefit-item {
    margin-left: 0;
  }

  .benefit-number {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .benefits-section span {
    font-size: 1.1rem;
  }
  
   .enquire-section {
    padding: 60px 15px;
    min-height: auto;
    background-attachment: scroll;
  }

  .enquire-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .enquire-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
.signup-section {
    padding: 40px 15px;
  }

  .signup-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .signup-form {
    flex-direction: column;
    gap: 15px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    flex: 1 1 100%;
    font-size: 1rem;
    padding: 12px 15px;
  }

  .privacy-text {
    font-size: 13px;
    margin-top: 25px;
  }
  /*.footer img {*/
  /*  max-width: 60px !important;*/
  /*}*/

  .footer h6 {
    font-size: 1rem;
  }

  .footer p, .footer li, .footer a {
    font-size: 0.9rem;
  }
  
 .logo-icon {
    max-width: 70px !important
  }

  .logo-text {
    max-height:60px !important
  }


   /****************************DROPDOW SUB MENU DISABLE ******************************* */

/*  .dropdown-submenu .dropdown-menu {*/
/*    display: none !important;*/
/*  }*/

/*  .dropdown-submenu > .dropdown-toggle {*/
/*    pointer-events: none;*/
/*    cursor: default;*/
/*    background-color: #222 !important;*/
/*    color: #aaa !important;*/
/*  }*/
 


/*}*/


/* **************************** Small devices (landscape phones, 576px and up) ************************* */


@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand h6 {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
  }
  
 .hero-section {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem;
    display: block !important;
    text-align: center;
  }
  .hero-section .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section .col-md-5,
  .hero-section .col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 200px;
    height: auto;
  }

  h1.display-4 {
    font-size: 1.2rem;   
    line-height: 1.1;
  }

  .hero-section h3{
    font-size: 1rem;
  }

  .hero-section p {
    font-size: 0.75rem;
  }

  .hero-section .btn {
    font-size: 0.755rem;
    padding: 0.5rem 1.25rem;
  }
  
   .about-heading h1 {
    font-size: 1.2rem;
  }

  .about-heading span {
    font-size: 1.1rem;
  }

  .about-text p {
    font-size: 0.75rem;
  }
  
 
 .services-bg {
    padding: 20px 10px;
    background: none;
  }

  .services-bg::before {
    display: none; 
  }

  .service-box {
    background-color: #000; 
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 100%; /* ensure full width */
  }

  .service-box h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .service-box p {
    font-size: 0.75rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .service-icon {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #d4af71;
  }
  
  .services-section {
    padding: 30px 0;
  }
  
  
  .section-title{
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.75rem;
    text-align: center;
  }


.benefits-section {

    margin-top: -30px;
    
  }
  .benefit-item {
    margin-left: 0;
  }

  .benefit-number {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .benefits-section span {
    font-size: 1.1rem;
  }

   .enquire-section {
    padding: 60px 15px;
    min-height: auto;
    background-attachment: scroll;
  }

  .enquire-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .enquire-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .signup-section {
    padding: 40px 15px;
  }

  .signup-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .signup-form {
    flex-direction: column;
    gap: 15px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    flex: 1 1 100%;
    font-size: 1rem;
    padding: 12px 15px;
  }

  .privacy-text {
    font-size: 13px;
    margin-top: 25px;
  }
  
 .footer .text-md-start,
  .footer .text-md-end {
    text-align: center !important;
  }

  .footer .justify-content-md-end {
    justify-content: center !important;
  }
  .logo-icon {
    max-width: 70px;
  }

  .logo-text {
    max-height: 60px;
  }
  
  
    /******************** for dropdown vwertical on small device ********************* */

 
  
  
  
 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand h6 {
    font-size: 20px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .navbar-brand img {
    height: 55px;
  }
  
   .hero-section {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem;
    display: block !important;
    text-align: center;
  }


 .hero-section .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section .col-md-5,
  .hero-section .col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 200px;
    height: auto;
  }

  h1.display-4 {
    font-size: 1.25rem; 
    line-height: 1.3;
  }

  .hero-section h3 {
    font-size: 1.1rem;
  }

  .hero-section p {
    font-size: 0.75rem;
  }

  .hero-section .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }
 

  /*.social-icons i {*/
  /*    display: none !important;*/
  /*}*/

 
  /*****************  to hide social icon dispaly on *************/
 .social-hide {
    display: none !important;
  }

/******************************* */
 
  
  .services-section {
    padding: 60px 20px;
  }

  .services-bg {
    padding: 40px 20px;
    background-position: center center;
  }

  .service-box {
    padding: 25px;
    margin-bottom: 20px;
  }

  .service-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  /*.services-section h1 {*/
  /*  font-size: 1.25rem;*/
  /*}*/

  .services-section h5 {
    font-size: 1rem;
  }

  .services-section p {
    font-size: 0.9rem;
  }
  
.section-title h2 {
    font-size: 1.2rem;
  }
  
   .about-section {
    padding: 2rem 1rem;
  }
  
  .about-heading h1 {
    font-size: 1.3rem;
  }

  .about-heading span {
    font-size: 1.1rem;
  }

  .about-text p {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.95rem;
    text-align: center;
  }

.benefits-section {

    margin-top: -30px;
    
  }
  .benefit-item {
    margin-left: 0;
  }

  .benefit-number {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .benefits-section span {
    font-size: 1.1rem;
  }
  
   .enquire-section {
    padding: 60px 15px;
    min-height: auto;
    background-attachment: scroll;
  }

  .enquire-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .enquire-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
.signup-section {
    padding: 40px 15px;
  }

  .signup-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .signup-form {
    flex-direction: column;
    gap: 15px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    flex: 1 1 100%;
    font-size: 1rem;
    padding: 12px 15px;
  }

  .privacy-text {
    font-size: 13px;
    margin-top: 25px;
  }
  
  .footer .text-md-start,
  .footer .text-md-end {
    text-align: center !important;
  }

  .footer .justify-content-md-end {
    justify-content: center !important;
  }
 .logo-icon {
    max-width: 70px;
  }

  .logo-text {
    max-height: 60px;
  }
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-brand h6 {
    font-size: 22px;
  }

  .navbar-nav .nav-link {
    font-size: 17px;
  }

  .navbar-brand img {
    height: 60px;
  }
  
   .navbar-nav {
    text-align: center;
  }

  .navbar .text-end {
    text-align: center !important;
  }
  
  .social-icons i {
    /*font-size: 1.2rem;*/
    /*padding: 0.5rem;*/
    
    display: none;
  }
  
.section-title {
    font-size: 2.8rem;
  }

  .benefit-item {
    margin-left: 60px;
  }

  .benefit-title {
    font-size: 1.85rem;
  }
  
 .enquire-heading {
    font-size: 2.7rem;
  }
  
   .signup-section h3 {
    font-size: 1.8rem;
  }

  .signup-form input {
    max-width: 300px;
  }

  .signup-form button {
    max-width: 200px;
  }

  .privacy-text {
    font-size: 14px;
  }
  
 
  
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .navbar-brand h6 {
    font-size: 24px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
  }

  .navbar-brand img {
    height: 60px;
  }
   .section-title {
    font-size: 3rem;
  }

  .benefit-item {
    margin-left: 80px;
  }

  .benefit-title {
    font-size: 2rem;
  }
  
  .enquire-heading {
    font-size: 3rem;
  }
  
}
}