    /* Global styles */
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }
    .parallax {
            background-image: url("../img/plane_banner.png"); /* Replace with actual image */
            height: 660px;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgb(255, 255, 255);
            text-align: center;
        }
        @media (max-width: 600px) {
            .parallax {
              
              height: 260px; /* Adjust height for mobile */
                background-attachment: scroll; /* Fixed may not work well on mobile */
            }
        }




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: 1px;
    padding-top: 25px;
}

/* Countries Grid */
.countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* Country Card */
.country {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    padding: 10px;
    height: 240px; /* Reduced height */
}

.country:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.country img {
    width: 90%;
    height: 120px; /* Reduced image size */
    object-fit: cover;
    margin: 0 auto;
}

.country h3 {
    font-size: 1.2rem; /* Reduced font size */
    margin: 10px 0 5px;
    color: #007bff;
}

.country p {
    font-size: 0.9rem; /* Reduced text size */
    color: #555;
    margin: 0 10px;
}

.explore-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 0px 20px;
    border-radius: 20px;
    width: 100px;
    text-decoration: none;
    font-size: 0.9rem; /* Reduced button size */
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.explore-btn:hover {
    background-color: #0056b3;
    transform: translateY(-4px);
}






.new-menu {
position: fixed;
top: -100px; /* Initially hidden (animated with transition) */
left: 0;
width: 100%;
background-color: #0056b3;
color: white;
/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
z-index: 997;
display: flex;
justify-content: space-around;
align-items: center;
/* padding: 10px 20px; */
transition: top 0.3s ease-in-out; /* Smooth show/hide transition */
}

.new-menu.visible {
top: 94px; /* Visible when scrolled past the threshold */
}

.new-menu-item {
font-size: 16px;
color: #ffffff;
cursor: pointer;
text-decoration: none;
}

.new-menu-item:hover {
color: #007bff;
}

.new-quote-button {
  margin-left: 13%;
  padding: 3px 3px;
  color: #0056b3;
  background-color: white;
  border: none;
  /* border-radius: 30px; */
  cursor: pointer;
  font-weight: bold;
  transition: background-color 1.3s ease, color 0.3s ease;
}

.new-quote-button:hover {
background-color: #ffffff;
}


/* Default visibility */
.new-menu {
display: flex; /* Ensure it is visible by default */
flex-wrap: wrap; /* Adjust for responsiveness */
}

/* Hide the menu on screens smaller than 768px */
@media (max-width: 1068px) {
.new-menu {
    display: none; /* Hide the menu */
}
}






  /* <!-- -------------------------------------------------------icon sticky side bar css---------------------------------- --> */

#floating-icons {
    position: fixed;
    right: 10px;
    top: 20%;
    z-index: 1000;
    opacity: 0; /* Initially hidden */
    transform: translateX(100px); /* Move the icons out of view */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Add smooth transition */
  }
  
  /* Media Query for devices with width > 1068px */
  @media (min-width: 1069px) {
    #floating-icons {
      display: block; /* Show the icons when screen width is greater than 1068px */
    }
  }
  
  .icon-link .hb {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
  }
  
  .icon-link .hb:hover {
    transform: scale(1.2); /* Adds hover effect */
  }
  
    /* <!-- -------------------------------------------------------icon sticky side bar css end------------------------------ --> */
  
  
/* Styling for country tags */
.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px;
}

.tag {
    background-color: #ffffff;
    color: rgb(2, 1, 1);
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}









/* Styling for universities container to create a grid layout */
#universities-container {
  display: flex;
  justify-content: center; /* Center the entire container */
  max-width: 1200px; /* Restrict container width */
  margin: 0 auto; /* Center the container horizontally */
}

#universities {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns per row */
  gap: 20px; /* Space between cards */
  width: 85%; /* Full width for grid alignment */
  padding: 20px; /* Padding around the grid */
  justify-content: center; /* Center the grid content */
}

/* Styling for individual university cards */
.university-card {
  background-color: white;
  border: 1px solid #0078d4;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.university-card:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image styling for the cards */
.university-card img {
  max-width: 100%;
  height: 150px; /* Uniform image size */
  object-fit: cover; /* Prevent image distortion */
  margin-bottom: 10px;
}

/* Text inside the cards */
.university-card h4 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: bold;
}

.university-card p {
  font-size: 14px;
  color: #555;
}

/* Media Queries */

/* For medium screens like tablets (768px to 1024px) */
@media (max-width: 1024px) {
  #universities {
      grid-template-columns: repeat(2, 1fr); /* Two columns per row */
      width: 90%; /* Adjust width */
  }

  .university-card h4 {
      font-size: 16px; /* Adjust text size */
  }

  .university-card p {
      font-size: 12px; /* Adjust text size */
  }
}

/* For smaller screens like mobile (below 768px) */
@media (max-width: 768px) {
  #universities {
      grid-template-columns: 1fr; /* One column per row */
      width: 95%; /* Adjust width */
  }

  .university-card h4 {
      font-size: 14px; /* Adjust text size */
  }

  .university-card p {
      font-size: 12px; /* Adjust text size */
  }

  /* Image size adjustment for smaller screens */
  .university-card img {
      height: 120px; /* Adjust image size */
  }
}

/* For extra-small screens (mobile portrait, below 480px) */
@media (max-width: 480px) {
  #universities {
      grid-template-columns: 1fr; /* One column per row */
      width: 100%; /* Full width for smaller screens */
  }

  .university-card h4 {
      font-size: 14px; /* Adjust text size */
  }

  .university-card p {
      font-size: 12px; /* Adjust text size */
  }

  /* Image size adjustment for extra small screens */
  .university-card img {
      height: 100px; /* Adjust image size */
  }
}













		/* 	––––––––––––––––––––––––– TIMELINE––––––––––––––––––––––––– */
			.timeline2 {
				overflow-y: scroll;
				overflow-x: hidden;
                /* height: 655px; */
				height: 550px;
				top: calc(100%-600px);
				position: relative;
				scroll-behavior:  smooth ;
				 
			}
			.timeline2   *, .timeline2   *::before, .timeline2   *::after { 
				font: normal 16px/1.5 "Helvetica Neue", sans-serif;
				color: #000000;
				margin: 0;
				padding: 0;
				box-sizing: border-box;
			}
			.timeline2::-webkit-scrollbar {
				width: 12px;
				background-color: #F5F5F5;
			}
			 
			.timeline2::-webkit-scrollbar-track {
				-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
				border-radius: 10px;
				background-color: #F5F5F5;
			}
			 
			.timeline2::-webkit-scrollbar-thumb {
				border-radius: 10px;
				-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
				background-color: #555;
			}
			 
			.timeline2 ul {
			  background: #456990;
			  /* padding: 50px 0; */
			}

			.timeline2 ul li {
			  list-style-type: none;
			  position: relative;
			      width: 2px;/* width: 6px; */
			  margin: 0 auto;
				padding-top: 10px;/* 50px; */
				padding-bottom: 10px;/* padding-bottom: 20px; = center padding-bottom: 10px; = center */
			 background: #fff; /* background: black;  */
			  
				border-left: 3px double white;
				
			}

			 
			.timeline2 ul li::after {
			  content: '';
			  position: absolute;
			  left: 50%;
			  top: 30px; /* bottom: 0;  bottom: 50%;=center top: 30px;=top  */ 
			  transform: translateX(-55%);/* transform: translateX(-50%); */
			  -webkit-transform: translateX(-55%);
			  width: 30px;
			  height: 30px;
			  border-radius: 50%;
			  background: inherit;
			  border: 2px solid #03A9F4;
			}

			.timeline2 ul li div {
			  position: relative;
			  bottom: 0;
			  width: 400px;
			  padding: 15px;
			  border-radius: 17px;
			  background: #ffffff;
			  
			}

			.timeline2 ul li div::before {
			  content: '';
			  position: absolute;
			  top: 20px; /* bottom: 7px; bottom: 50%;=center top: 20px;=top */
			  
			  width: 0;
			  height: 0;
			  border-style: solid;
			}

			.timeline2 ul li:nth-child(odd) div {
			  left: 45px;
			}

			.timeline2 ul li:nth-child(odd) div::before {
			  left: -15px;
				border-width: 16px 16px 16px 0;/* border-width: 8px 16px 8px 0; */
			  border-color: transparent #03A9F4 transparent transparent;
			}

			.timeline2 ul li:nth-child(even) div {
			  left: -439px;
			}

			.timeline2 ul li:nth-child(even) div::before {
			  right: -15px;
			  	border-width: 16px 0 16px 16px; /* border-width: 8px 0 8px 16px; */
			  border-color: transparent transparent transparent #03A9F4;
			}
			
			
			.timeline2 ul li:nth-child(odd) .time {
				position: absolute;
				top: 20px;
				left: -100px;
				width: 90px;
			}
			.timeline2 ul li:nth-child(even) .time {
				position: absolute;
				top: 20px;
				right: -120px;
				width: 90px;
			}
			
			
			.timeline2 time {
			  display: block;
			  font-size: 1.2rem;
			  font-weight: bold;
			  margin-bottom: 8px;
			}


			/* EFFECTS
			–––––––––––––––––––––––––––––––––––––––––––––––––– */

			.timeline2 ul li::after {
				transition: background .5s ease-in-out;
				-webkit-transition: background .5s ease-in-out;
			}

			.timeline2 ul li.in-view::after {
			  background: #03A9F4;
			  border: 8px solid white;
			}

			.timeline2 ul li div {
			  visibility: hidden;
			  opacity: 0;
				transition: all .5s ease-in-out;
				-webkit-transition: all .5s ease-in-out;
			}

			.timeline2 ul li:nth-child(odd) div {
				transform: translate3d(200px, 0, 0);
				-webkit-transform: translate(200px, 0, 0);
			}

			.timeline2 ul li:nth-child(even) div {
				transform: translate3d(-200px, 0, 0);
				-webkit-transform: translate(-200px, 0, 0);
			}

			.timeline2 ul li.in-view div {
				transform: none;
				-webkit-transform: none;
			  visibility: visible;
			  opacity: 1;
			  /* disabled when arrow is on top position
			  border-radius: 10px;
			  */
			}
			
			.timeline2 ul li  .time {
				transition: all .5s ease-in-out;
				-webkit-transition: all .5s ease-in-out;
				transform: rotate(-90deg);
				-webkit-transform:rotate(270deg);
			}
			.timeline2 ul li.in-view  .time {
				transform: rotate(0deg);
				-webkit-transform:rotate(0deg);
			}

			/* GENERAL MEDIA QUERIES
			–––––––––––––––––––––––––––––––––––––––––––––––––– */

			@media screen and (max-width: 900px) {
			  .timeline2 ul li div {
				width: 250px;
			  }
			  .timeline2 ul li:nth-child(even) div {
				left: -289px;
				/*250+45-6*/
			  }
			}

			@media screen and (max-width: 600px) {
			  .timeline2 ul li {
				margin-left: 20px;
			  }
			  .timeline2 ul li div {
				width: calc(100vw - 120px);
			  }
			  .timeline2 ul li:nth-child(even) div {
				left: 45px;
			  }
			  .timeline2 ul li:nth-child(even) div::before {
				left: -15px;
				border-width: 16px 16px 16px 0; /* border-width: 8px 16px 8px 0;  */
				border-color: transparent #03A9F4 transparent transparent;
			  }
			  
				
				.timeline2 ul li:nth-child(odd) .time {
					position: absolute;
					top: 60px;
					left: -23px;
					width: 90px;
					/*
					transform: rotate(-90deg);
					-webkit-transform:rotate(270deg);
					*/
					transform: rotate(0deg);
					-webkit-transform:rotate(0deg);
				}
				.timeline2 ul li:nth-child(even) .time {
					position: absolute;
					top: 60px;
					right: -67px;
					width: 90px;
					/*
					transform: rotate(-90deg);
					-webkit-transform:rotate(270deg);
					*/
					transform: rotate(0deg);
					-webkit-transform:rotate(0deg);
				}
				.timeline2 ul li.in-view:nth-child(odd) .time {
					transform: rotate(-90deg);
					-webkit-transform:rotate(270deg);					 
				}
				.timeline2 ul li.in-view:nth-child(even) .time {
					transform: rotate(-90deg);
					-webkit-transform:rotate(270deg);
				}
			  
			}

















            /*------------------------- Brochure Container ----------------------------*/
.brochure-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 20px;
}

.brochure-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.brochure-content {
    margin-left: 30px;
    flex-grow: 1;
}

.brochure-content h3 {
    font-size: 28px;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 700;
}

.brochure-content p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.brochure-content button {
    padding: 12px 20px;
    background-color: #f80c0c;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
    font-weight: 500;
}

.brochure-content button:hover {
    background-color: #da5752;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 50%;
    top: -85px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-btn {
    color: #6c757d;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    float: right;
    transition: color 0.3s;
    border: none;
    font-size: 2.4PC;
    position: absolute;
    position: absolute;
    top: 7px;
    right: 28px;
    BORDER-RADIUS: 8PX;
}

.close-btn:hover,
.close-btn:focus {
    color: #343a40;
}

/* Form Styles */
form label {
    font-size: 16px;
    color: #343a40;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

form input, form select {
    width: 97%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    color: #495057;
    transition: border-color 0.3s ease-in-out;
}

form input:focus, form select:focus {
    border-color: #007bff;
    outline: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .brochure-container {
        flex-direction: column;
        text-align: center;
    }

    .brochure-image img {
        width: 100%;
        margin-bottom: 20px;
    }

    .brochure-content {
        margin-left: 0;
    }

    .modal-content {
        background-color: #ffffff;
        margin: 5% auto;
        padding: 30px;
        border-radius: 8px;
        width: 50%;
        top: -68px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        animation: fadeIn 0.5s;
        
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .brochure-container {
        flex-direction: column;
        text-align: center;
    }

    .brochure-image img {
        width: 100%;
        margin-bottom: 20px;
    }

    .brochure-content {
        margin-left: 0;
    }

    .modal-content {
        width: 80%;
    }
}



.service-section-unique {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-section-unique:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.image-container-unique {
flex: 1;
display: flex;
flex-direction: column;
gap: 70px;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 32px;
}

.image-container-unique img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Text Container */
.text-container-unique {
  flex: 1.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background-color: #f7f9fc;
  border-left: 5px solid #42a5f5;
  border-radius: 5px;
}

.text-container-unique h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.text-container-unique p {
  font-size: 1.1rem;
  color: #424242;
  margin-bottom: 20px;
}

/* Accordion Menu */
.accordion-menu-unique h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #01579b;
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.accordion-menu-unique h3:hover {
  color: #0288d1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-menu-unique ul li {
  padding: 12px 15px;
  background: #e3f2fd;
  margin-bottom: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.accordion-menu-unique ul li:hover {
  background-color: #bbdefb;
  transform: translateX(10px);
}

.accordion-menu-unique ul li ul li {
  padding: 10px;
  background: #cfd8dc;
  border-radius: 3px;
  color: #37474f;
}

.accordion-menu-unique ul li ul li:hover {
  background: #b0bec5;
  color: #263238;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-section-unique {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
  }

  .text-container-unique {
      padding: 15px;
      border-left: none;
      text-align: center;
  }

  .image-container-unique {
      padding: 15px;
  }

  .image-container-unique img {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
.image-container-unique img:nth-child(2) {
display: none; /* Hide the second image */
}

.service-section-unique {
flex-direction: column;
gap: 20px;
padding: 20px;
}

.text-container-unique {
padding: 15px;
border-left: none;
text-align: center;
}

.image-container-unique {
padding: 15px;
}

.image-container-unique img {
max-width: 100%;
}
}




@media (max-width: 820px) and (max-height: 1180px) {
.image-container-unique {
width: 100%; /* Adjust as needed */
height: auto; /* Maintain aspect ratio */
padding: 30px; /* Increase padding */
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15); /* Enhance shadow */
}

.image-container-unique img {
width: 100%; /* Let the image take the full width */
height: auto; /* Maintain the aspect ratio */
}

.service-section-unique {
gap: 40px; /* Add more spacing between elements */
}
}















.button {
  text-transform: uppercase;
  --primary: #7567F8;
  --primary-dark: #D1D6EE;
  --primary-darkest: #8A91B4;
  --text: #fff;
  --text-opacity: 1;
  --success: #7567F8;
  --success-x: -12;
  --success-stroke: 14;
  --success-opacity: 0;
  --border-radius: 50;
  --overflow: hidden;
  --x: 0;
  --y: 0;
  --rotate: 0;
  --plane-x: 0;
  --plane-y: 0;
  --plane-opacity: 1;
  --trails: rgba(255, 255, 255, 0.15);
  --trails-stroke: 57;
  --left-wing-background: var(--primary);
  --left-wing-first-x: 0;
  --left-wing-first-y: 0;
  --left-wing-second-x: 50;
  --left-wing-second-y: 0;
  --left-wing-third-x: 0;
  --left-wing-third-y: 100;
  --left-body-background: var(--primary);
  --left-body-first-x: 50;
  --left-body-first-y: 0;
  --left-body-second-x: 50;
  --left-body-second-y: 100;
  --left-body-third-x: 0;
  --left-body-third-y: 100;
  --right-wing-background: var(--primary);
  --right-wing-first-x: 50;
  --right-wing-first-y: 0;
  --right-wing-second-x: 100;
  --right-wing-second-y: 0;
  --right-wing-third-x: 100;
  --right-wing-third-y: 100;
  --right-body-background: var(--primary);
  --right-body-first-x: 50;
  --right-body-first-y: 0;
  --right-body-second-x: 50;
  --right-body-second-y: 100;
  --right-body-third-x: 100;
  --right-body-third-y: 100;
  display: block;
  cursor: pointer;
  position: relative;
  border: 0;
  padding: 8px 0px;
  min-width: 100px;
  text-align: center;
  margin: 0;
  line-height: 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  background: none;
  outline: none;
  color: var(--text);
  /* -webkit-appearance: none; */
  -webkit-tap-highlight-color: transparent;
}
.button .plane,
.button .trails {
  pointer-events: none;
  position: absolute;
}
.button .plane {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: drop-shadow(0 3px 6px var(--shadow));
          filter: drop-shadow(0 3px 6px var(--shadow));
  -webkit-transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) rotate(calc(var(--rotate) * 1deg)) translateZ(0);
          transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) rotate(calc(var(--rotate) * 1deg)) translateZ(0);
}
.button .plane .left,
.button .plane .right {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: var(--plane-opacity);
  -webkit-transform: translate(calc(var(--plane-x) * 1px), calc(var(--plane-y) * 1px)) translateZ(0);
          transform: translate(calc(var(--plane-x) * 1px), calc(var(--plane-y) * 1px)) translateZ(0);
}
.button .plane .left:before, .button .plane .left:after,
.button .plane .right:before,
.button .plane .right:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: calc(var(--border-radius) * 1px);
  -webkit-transform: translate(var(--part-x, 0.4%), var(--part-y, 0)) translateZ(0);
          transform: translate(var(--part-x, 0.4%), var(--part-y, 0)) translateZ(0);
  z-index: var(--z-index, 2);
  background: var(--background, var(--left-wing-background));
  -webkit-clip-path: polygon(calc(var(--first-x, var(--left-wing-first-x)) * 1%) calc(var(--first-y, var(--left-wing-first-y)) * 1%), calc(var(--second-x, var(--left-wing-second-x)) * 1%) calc(var(--second-y, var(--left-wing-second-y)) * 1%), calc(var(--third-x, var(--left-wing-third-x)) * 1%) calc(var(--third-y, var(--left-wing-third-y)) * 1%));
          clip-path: polygon(calc(var(--first-x, var(--left-wing-first-x)) * 1%) calc(var(--first-y, var(--left-wing-first-y)) * 1%), calc(var(--second-x, var(--left-wing-second-x)) * 1%) calc(var(--second-y, var(--left-wing-second-y)) * 1%), calc(var(--third-x, var(--left-wing-third-x)) * 1%) calc(var(--third-y, var(--left-wing-third-y)) * 1%));
}
.button .plane .left:after {
  --part-x: 0;
  --z-index: 1;
  --background: var(--left-body-background);
  --first-x: var(--left-body-first-x);
  --first-y: var(--left-body-first-y);
  --second-x: var(--left-body-second-x);
  --second-y: var(--left-body-second-y);
  --third-x: var(--left-body-third-x);
  --third-y: var(--left-body-third-y);
}
.button .plane .right:before {
  --part-x: -.4%;
  --z-index: 2;
  --background: var(--right-wing-background);
  --first-x: var(--right-wing-first-x);
  --first-y: var(--right-wing-first-y);
  --second-x: var(--right-wing-second-x);
  --second-y: var(--right-wing-second-y);
  --third-x: var(--right-wing-third-x);
  --third-y: var(--right-wing-third-y);
}
.button .plane .right:after {
  --part-x: 0;
  --z-index: 1;
  --background: var(--right-body-background);
  --first-x: var(--right-body-first-x);
  --first-y: var(--right-body-first-y);
  --second-x: var(--right-body-second-x);
  --second-y: var(--right-body-second-y);
  --third-x: var(--right-body-third-x);
  --third-y: var(--right-body-third-y);
}
.button .trails {
  display: block;
  width: 33px;
  height: 64px;
  top: -4px;
  left: 16px;
  fill: none;
  stroke: var(--trails);
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 57px;
  stroke-dashoffset: calc(var(--trails-stroke) * 1px);
  -webkit-transform: rotate(68deg) translateZ(0);
          transform: rotate(68deg) translateZ(0);
}
.button span {
  display: block;
  position: relative;
  z-index: 4;
  opacity: var(--text-opacity);
}
.button span.success {
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  -webkit-transform: translateX(calc(var(--success-x) * 1px)) translateZ(0);
          transform: translateX(calc(var(--success-x) * 1px)) translateZ(0);
  opacity: var(--success-opacity);
  color: var(--success);
}
.button span.success svg {
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  margin: 4px 8px 0 0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14px;
  stroke: var(--success);
  stroke-dashoffset: calc(var(--success-stroke) * 1px);
}
.btn-container {
  overflow: hidden;
  font-family: 'Inter';
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}


.parallax-container {
  width: 87%;
  height: 300px;
  background-image: url(../img/UNIVERSITIES/2banner_sample.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20pc; /* For rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-color: #fbc038;
}

/* For medium screens (tablets and smaller desktops) */
@media screen and (max-width: 1024px) {
  .parallax-container {
      height: 250px; /* Slightly smaller height */
      border-radius: 15pc; /* Adjust radius */
      background-size: cover; /* Make the image cover the area */
  }
}

/* For small screens (mobile devices) */
@media screen and (max-width: 768px) {
  .parallax-container {
      height: 200px; /* Further reduce height */
      border-radius: 10pc; /* Compact radius for smaller screens */
      background-size: cover; /* Ensure the image fits well */
      width: 95%; /* Adjust width for smaller devices */
  }
}

/* For extra small screens (very small devices) */
@media screen and (max-width: 480px) {
  .parallax-container {
      height: 150px; /* Compact height */
      border-radius: 5pc; /* Minimal rounding */
      background-size: cover; /* Keep image fully visible */
      width: 100%; /* Full width */
  }
}



.parallax-heading {
  color: white;
  font-size: 2.5rem; /* Default size for large screens */
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  margin-right: 40pc;
}

/* For medium screens (tablets and smaller desktops) */
@media screen and (max-width: 1024px) {
  .parallax-heading {
      font-size: 2rem; /* Slightly smaller font size */
      margin-right: 20pc; /* Adjust margin */
  }
}

/* For small screens (mobile devices) */
@media screen and (max-width: 768px) {
  .parallax-heading {
      font-size: 1.8rem; /* Smaller font size for readability */
      margin-right: 10pc; /* Adjust margin for smaller width */
  }
}

/* For extra small screens (very small devices) */
@media screen and (max-width: 480px) {
  .parallax-heading {
      font-size: 1.5rem; /* More compact font size */
      margin-right: 5pc; /* Minimal margin */
  }
}










/* Styling for the hero text container */
.hero-text {
  margin-left: 300px; /* Default margin for larger screens */
}

/* Styling for the main heading */
.hero-heading {
  margin: 0 0 0.5rem 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #2d274e;
  
}

/* Styling for the subtext paragraph */
.hero-subtext {
  margin: 0;
  font-size: 1rem; /* Adjust font size as needed */
}

/* Highlighted text styling */
.highlighted-text {
  color: #000;
  background-color: #e2ab34;
}

/* Responsive styling */
@media screen and (max-width: 1024px) {
  .hero-text {
      margin-left: 200px; /* Adjust margin for medium screens */
  }
  .hero-heading {
      font-size: 1.8rem; /* Reduce heading size */
  }
  .hero-subtext {
      font-size: 0.9rem; /* Adjust subtext size */
  }
}

@media screen and (max-width: 768px) {
  .hero-text {
      margin-left: 50px; /* Further reduce margin for smaller screens */
  }
  .hero-heading {
      font-size: 1.5rem; /* Further reduce heading size */
  }
  .hero-subtext {
      font-size: 0.85rem; /* Adjust subtext size */
  }
}

@media screen and (max-width: 480px) {
  .hero-text {
      margin-left: 20px; /* Minimal margin for very small screens */
  }
  .hero-heading {
      font-size: 1.2rem; /* Compact heading size */
  }
  .hero-subtext {
      font-size: 0.8rem; /* Compact subtext size */
  }
}



@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.arrow_bounce {
  position: relative;
  animation: arrowBounce 2s infinite;
}




.share-wrapper {
  position: fixed; /* Ensure it stays in place even when scrolling */
  right: 20px; /* Distance from the right edge */
  top: 650px; /* Distance from the top */
  width: 45px;
  height: 45px;
  margin: 0; /* Remove the margin for precise placement */
  z-index: 1000; /* Ensure it's above other elements */
}

/* Adjustments for medium-sized screens (tablets) */
@media (max-width: 1024px) {
  .share-wrapper {
    right: 15px;
    bottom: 20px;
    top: 650px;  /* Adjust bottom distance for tablets */
  }
}

/* Adjustments for small screens (mobile) */
@media (max-width: 768px) {
  .share-wrapper {
    right: 10px;
    bottom: 15px; /* Adjust bottom distance for mobile */
    width: 40px;
    height: 40px;
    top: 650px; 
  }
}

/* Adjustments for very small screens (extra small mobile) */
@media (max-width: 480px) {
  .share-wrapper {
    right: 5px;
    bottom: 10px; /* Adjust bottom distance for small mobile screens */
    width: 35px;
    height: 35px;
    top: 650px; 
  }
}

.share-wrapper .share-button {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 7px;

  background: #fff;
  border-radius: 50%;
  display: block;
  box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  z-index: 5;
}

.share-wrapper .share-button:hover {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.share-wrapper .share-button .share-button__span-wrapper {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.share-wrapper .share-button .share-button__span-wrapper span {
  font-size: 0;
  width: 100%;
  background: #1a334d;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child {
  transform: rotate(30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 0;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span {
  transform: rotate(-30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-url {
  font-size: 0;
  z-index: 0;
  position: absolute;
  width: 10px;
  height: 10px;
  overflow: hidden;
  bottom: 50%;
  right: 50%;
  margin-bottom: -5px;
  margin-right: -5px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.share-wrapper .share-url.url-1 {
  transition-delay: 0.2s;
}

.share-wrapper .share-url.url-2 {
  transition-delay: 0.15s;
}

.share-wrapper .share-url.url-3 {
  transition-delay: 0.07s;
}

.share-wrapper .share-url.url-4 {
  transition-delay: 0s;
}

.share-wrapper .share-url:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

.share-wrapper.open .share-button {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.share-wrapper.open .share-button span {
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0.2s;
}

.share-wrapper.open .share-button span:first-child {
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child:before {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child + span {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child + span:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-url {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: block;
}

.share-wrapper.open .share-url.url-1 {
  bottom: 80px;
  right: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0s;
}

.share-wrapper.open .share-url.url-2 {
  bottom: 70px;
  right: 40px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.05s;
}

.share-wrapper.open .share-url.url-3 {
  bottom: 40px;
  right: 70px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.12s;
}

.share-wrapper.open .share-url.url-4 {
  bottom: 0;
  right: 80px;
  margin-bottom: 0;
  margin-right: 0;
  transition-delay: 0.2s;
}
.share-url i {
  font-size: 20px;
  color: #030303; /* A pleasant blue color */
  display: flex;
  padding: 6px;
   align-items: baseline;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition on color and transform */
}

.share-url i:hover {
  color: #000000; /* A darker blue for the hover effect */
  transform: scale(1.1); /* Slight zoom-in effect on hover */
}


