@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Styling */
header {
    background: #fff;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.logo img {
    width: 260px;
    height: auto;
}

/* Menu items */
.nav-links {
    list-style: none;
    display: flex;
    margin-top: 14px;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    text-transform: capitalize;
    font-weight: 600;
}

/* Hover effect - underline animation */
.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #f99a22;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar .btn {
    background-color: #f99a22;
    padding: 8px 24px;
    border-radius: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.navbar .btn:hover {
    background-color: #b37004;
}

#menu-toggler {
    display: none;
}

#hamburger-btn {
    display: none;
    cursor: pointer;
}

#hamburger-btn svg {
    fill: #000;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    #hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background:#f99b27;
        width: 100%;
        text-align: center;
        flex-direction: column;
        padding: 20px 0;
    }
    .logo img{
        width: 50px !important;
    }


    .nav-links li {
        margin: 10px 0;
    }

    #menu-toggler:checked ~ .nav-links {
        display: flex;
    }

    .navbar .btn {
        display: none; 
    }
}


/* ---------------------About Us---------------------------------------*/

.homepage {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.homepage img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e12025;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .homepage{
        margin-top: 65px;
    }
    .homepage img{
        height: auto;
    }
    .about-text {
        font-size: 24px;
        padding: 8px 15px;
    }
}

/*-------------------------------------Overview---------------------------------*/

/*----------------------------Contact form-------------------------------------*/

.overview {
    width: 90%;
    margin: auto;
    margin-top: 50px;
    padding: 30px 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
  }
  
  .overview h2 {
    font-size: 28px;
    color: #2fa895;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .overview p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
  }
  
  .contact-form {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: 60%;
    margin: auto;
  }
  
  .contact-form h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
  }
  
  .form-group input,
  .form-group select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: #fa9825;
    outline: none;
  }
  
  .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: #fa9825;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e7891e;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .overview {
      padding: 20px 15px;
      margin-top: 20px;
    }
  
    .overview h2 {
      font-size: 1.6rem;
    }
  
    .contact-form h2 {
      font-size: 1.3rem;
    }
    .contact-form {
        padding: 20px;
        width: 100%;
      }
    
  }
  
  @media (max-width: 480px) {
    .overview {
      padding: 15px 10px;
      width: 95%;
      margin-top: 20px;
    }
  
    .overview h2 {
      font-size: 1.3rem;
    }
  
    .overview p {
      font-size: 0.95rem;
    }
  
    .contact-form {
      padding: 20px;
      width: 100%;
    }
  
    .form-group input,
    .form-group select {
      font-size: 0.95rem;
      padding: 8px;
    }
  
    .contact-form button {
      font-size: 0.95rem;
      padding: 10px;
    }
  }
  
/*-----------------------Footer page-----------------------------------------*/

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
max-width: 100%;
height: auto;
}
section {
    padding: 60px 0;
    min-height: 100vh;
}
.footer {
padding: 100px 0px 0px;
background-color: #030a16;
}


.footer .widget1 p {
font-size: 16px;
color: rgba(255, 255, 255, .6);
margin-top: 26px;
}

.footer .socialLinks {
margin-top: 28px;
}

.socialLinks ul li {
display: inline-block;
}


.socialLinks ul li a i {
display: block;
margin: 0 2px;
width: 40px;
height: 40px;
background: #fafafa;
border-radius: 50%;
text-align: center;
margin-right: 5px;
line-height: 40px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.socialLinks ul li a .fa-facebook-f {
color: #4267b2;
}

.socialLinks ul li a .fa-twitter {
color: #1da1f2;
}

.socialLinks ul li a .fa-google-plus-g {
color: #dd5044;
}

.socialLinks ul li a .fa-linkedin-in {
color: #0177b5;
}


.socialLinks ul li a:hover i {
color: #fff;
}

.socialLinks ul li a:hover .fa-facebook-f {
background: #4267b2;
}

.socialLinks ul li a:hover .fa-twitter {
background: #1da1f2;
}

.socialLinks ul li a:hover .fa-google-plus-g {
background: #dd5044;
}

.socialLinks ul li a:hover .fa-linkedin-in {
background: #0177b5;
}
footer .logo {
max-width: 200px;
}

.footer h5 {
font-weight: 500;
margin-bottom: 28px;
text-transform: capitalize;
font-weight: 600;
color: #fff;
font-size: 21px
}

.footer .widget2 .media img {
margin-right: 20px;
max-width: 100px;
}
.footer .widget2 .media p {
font-size: 16px;
color: rgba(255, 255, 255, .8);;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: 600;
line-height: 26px;
}

.footer .widget2 .media span {
font-size: 12px;
color: #ffb606;
text-transform: uppercase;
margin-top: 15px;
display: block;
}

.footer .widget2 .media {
margin-bottom: 20px;
}

.footer .widget3 ul li a,
.footer .widget4 ul li a {
font-size: 16px;
color: rgba(255, 255, 255, .6);;
text-transform: capitalize;
margin-bottom: 13px;
display: block;
}

.footer .widget3 ul li a:hover,
.footer .widget4 ul li a:hover,
.footer .widget2 a:hover p {
color: #ffb606;
}

.footer .widget3 h5 {
margin-bottom: 22px;
font-weight: 600;
color: #fff;
font-size: 21px;
line-height: 32px;
}

.footer .widget4 h5 {
margin-bottom: 22px;
font-weight: 600;
color: #fff;
font-size: 21px;
}

.copyRightArea {
margin-top: 83px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 25px 0px 28px;
}

.copyRightArea p {
color: rgba(255, 255, 255, 0.6);
}

/*--------------------------Modal------------------------------------------------*/
.modal-content {
    border-radius: 10px;
    padding: 20px;
}
.modal-header {
    border-bottom: none;
}
.modal-body {
    text-align: left;
}
.btn-close {
    background: none;
    border: none;
}

