@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Gidole&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gidole&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.image {
    position: relative;
    width:100%;
    height:500px;
   
   
}

.image img {
    width: 100%; /* Ensure the image fits the container */
    height: 100%; /* Maintain aspect ratio */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1; /* Ensure overlay is above the image */
}

.heading{
    
     position: absolute;
    top: 20%;
    left: 15%;
    font-size:60px;
    color:white;
    font-family: "Gidole", sans-serif;
  font-weight: 700;
  font-style: normal;
    z-index: 2; /* Ensure overlay is above the image */
    border-top: 5px solid orange; /* Top border of 5px */
    border-left: 5px solid orange; /* Left border of 5px */
    padding-top: 20px; /* Adjust padding to accommodate the top border */
    padding-left: 10px; /* Optional: Adjust left padding */
     transition: transform 0.3s ease;
}

 .heading:hover{
    transform: scale(1.1); /* Zoom effect */
}


@media(max-width:776px){
    
    .heading{
        
        font-size:20px; 
    }
}


.button2 {
    position: absolute;
    top: 60%; /* Position buttons below the heading */
    left: 28%; /* Center the button container horizontally */
    transform: translateX(-50%); /* Adjust to center buttons */
    display: flex;
    justify-content: space-between; /* Distribute buttons evenly */
    gap: 10px; /* Add space between buttons */
    z-index: 2; /* Ensure buttons are above overlay */
   
    
}



@media(max-width:776px){
    
    .button2{
        height:auto;
        top:40%;
        left:32%;
        flex-direction:column;
        justify-content: none;
    }
}

.firstbutton {
    width: 150px; 
    height: 50px; 
    border: 1px solid gray; 
    background-color: orange; 
    color: white; 
    font-size: 19px;
    cursor: pointer; 
    font-weight:orange;
    transition: background-color 0.3s; 
}


    

.firstbutton:hover {
    background-color: #FF8C00; 
}

.heading2{
     
    width:100%;
    height:auto;
    
   
}




.inboundoutbound {
    width: 90%;
    height: auto;
    display: flex;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    gap: 20px;
   
}

@media (max-width: 776px) {
    .inboundoutbound {
        
        
        flex-direction: column; /* Stack cards vertically on smaller screens */
        margin-top: 20px;
        height: auto; /* Allow height to adjust when stacked */
        width: 100%; 
        padding: 0 10px; 
        
    }

    
}

.card {
    width: 25%; /* 25% width for the desktop layout */
    height: 450px;
    padding:10px;
    border: 1px solid gray;
    box-sizing: border-box; 
     align-items: center; /* Horizontally centers the content */
    text-align: center; /* Centers the text inside the card */
    z-index:1;
    box-shadow: 6px 6px 8px 5px rgba(0, 0, 0, 0.3);
     transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.1); /* Zoom in on hover */
}

@media(max-width:776px){
    
    .card {
        margin:0;
        width: 80%; /* Adjust card width for mobile, ensuring it fits well */
        height:auto;
        margin-left: auto; /* Center card horizontally */
        margin-right: auto; /* Center card horizontally */
          text-align: center;
        margin-top:10px;
    }
}

@media(max-width:950px){
    
     .card {
        
        height:auto;
       
    }
}


.card i {
    font-size: 30px; /* Adjust icon size */
    margin-bottom: 10px; /* Space between icon and text */
    margin-top:10px;
    color:orange;
}

.card h5 {
     font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:22px;
}

.card p{
    font-family: "Gidole", sans-serif;
  font-weight: 400;
  font-size:19px;
  font-style: normal;
  padding:10px;
}







.thirdDiv {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 776px) {
    .thirdDiv {
        width: 100%;
        margin-top: 20px;
        flex-direction: column; /* Stack the text and image on smaller screens */
        align-items: center; /* Center content on mobile */
    }
}

.text {
    width: 60%;
    height: auto;
    margin: 30px;
    
    
}

 




@media (max-width: 776px) {
    .text {
        width: 90%;
        height: auto;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Center text on mobile */
    }
    
    .text {
    order: 1; /* Ensure text comes first */
  }

  .image {
    order: 2; /* Image comes after text */
  }
}

.text h5 {
    font-family: "Boldonse", system-ui;
     font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:29px;
}

@media(max-width:776px){
    
    .text h5{
        
         font-family: "Boldonse", system-ui;
    font-weight: 400;
    padding:10px;
    font-style: normal;
    font-size: 18px;
    color: black;
    text-align: center;
    line-height:2;
    }
}

.text p {
    font-family: "Gidole", sans-serif;
    font-weight: 400;
    font-size: 19px;
    font-style: normal;
    padding: 20px;
    text-align: justify; /* Improve text readability */
}

.image2 {
    position: relative;
    width: 40%;
    height: 400px;
    margin: 30px;
}

@media (max-width: 776px) {
    .image2 {
        width: 80%;
        height: auto;
        margin: 10px;
    }
}

.image2 img {
    width: 100%;
    height: 100%;
    display: block;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
}

.overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 165, 0, 0.5); /* Semi-transparent orange */
    z-index: 1;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.overlay3:hover {
    background-color: transparent; /* Remove the overlay on hover */
}

.text3{
    
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border:1px solid #FF5F1F ;
    border-radius:30px;
    margin-bottom:30px;
    
    
}

.text3 h5{
    
    font-family: "Gidole", sans-serif;
  font-weight: 700;
  font-size:35px;
  font-style: normal;
  text-align:center;
  padding:30px;
  color:#FF5F1F;
  
}

.text3 p{
    
    font-family: "Gidole", sans-serif;
    font-weight: 400;
    font-size: 19px;
    font-style: normal;
    padding: 20px;
    text-align: justify; /* Improve text readability */
    padding-left:30px;
    padding-right:30px;
}







.form1 {
    width: 30%;
    height: auto; 
    padding: 20px; 
    border: 1px solid gray;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 20px auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out; 
}

.form1:hover {
    transform: scale(1.05); /* Zoom-in effect */
}


/* Style for input fields */
.form1 input {
    border: none; /* Removes the default border */
    outline: none;
    width: 100%;
    padding: 15px; 
    margin: 10px 0; 
    border-bottom: 1px solid black;
    border-radius: 5px; 
    box-sizing: border-box;
}

/* Style for button */
.button3 {
    width: 100%;
    padding: 15px; 
    border: 1px solid orange;
    color:white;
    border-radius: 5px; 
    cursor: pointer; 
    box-sizing: border-box;
    background-color:orange;
}

/* Button hover effect */
.button3:hover {
    background-color: #FFD580; 
}


@media (max-width: 776px) {
    .form1 {
        width: 90%; 
        margin-left: auto; 
        margin-right: auto; 
        padding: 15px; 
    }

   
    .form1 input, .button3 {
        width: 100%;
        padding: 12px; 
    }
}




