@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.menu-itemcolor{
   color: #003087;
   /* hover color */
   color:#FF6200; 
/* button bg or color */
background-color:#FF6200;
color:#FFFFFF
}
.herosection{
    overlay: #003087;
    opacity: 50%;
    color: #FFFFFF
}
/* g=pac */
:root{
--primary-color:#8C80E4;
--text-color:#3A3A3A;
--text-heading:#000000;
--text-white:#FFFFFF;
--footer:#0E0D0D;
}

a {
    text-decoration: none;
}
/* whatsapp button */
#whatsapp-button {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #0fef63;
    padding: 10px;
    border-radius: 20%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
#whatsapp-button i{
    color:white
}

/* navbar */
.navbar {
    transition: background 0.3s ease-in-out;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: var(--text-white);
    font-size: 3rem;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}
.navbar .navbar-brand img{
    width: 150px;
    height: auto;
}
.navbar.scrolled .navbar-brand {
    color: var(--primary-color)
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar .nav-link {
    color: var(--text-white);
    font-size: 18px;
    padding: 0px 15px !important;
    font-family: "Montserrat";
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
    font-size: 18px;
    transition: 0.2s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.navbar.navbar.scrolled .nav-link:hover {
    color: var(--primary-color)
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    color: var(--primary-color) !important;
    margin-top: 0;
}

.navbar .nav-item-button {
    color: var(--text-white);
    background: var(--primary-color);
    box-sizing: border-box;
    padding: 10px 27px !important;
    border-radius: 60px;
    margin-left: 5px;
    margin-right: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 200ms all;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    opacity: .96;
    text-transform: uppercase;
}

.navbar .nav-item-button:hover {
    color: var(--text-white)!important;
}

.navbar.scrolled .nav-link.nav-item-button {
    color: var(--text-white) !important;
}
@media (max-width:768px) {
    

.navbar-toggler:focus{
    box-shadow: none !important;
}
    .navbar-toggler{
    background-color:var(--primary-color) !important;
    border-radius: 100% !important;
    height: 50px !important;
    width: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    outline: none !important;
    border: none !important;
    }
    .navbar-toggler i{
        color:white !important;
    }
    .navbar-collapse{
        background-color: var(--text-white);
    }
    .navbar-nav {
    display: flex;
    align-items: start;
}
    .navbar .nav-link {
        color: var(--text-color);
        font-size: 18px;
        padding: 0px 15px !important;
}
.navbar .nav-item-button {
    color: white;
    background: var(--primary-color);
    box-sizing: border-box;
    padding: 10px 27px !important;
    border-radius: 60px;
    margin-left: 5px;
    margin-right: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 200ms all;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    opacity: .96;
    text-transform: uppercase;
}
}
/* hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/g-pac-background.png');
    transition: 0.3s, border-radius 0.3s, opacity 0.3s;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero::before {
     content: ""; 
     position: absolute; 
     top: 0;
    left: 0;
    width: 100%; 
     height: 100%; 
     background:#000000;
    opacity: 50%; 
     z-index: 1; 
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 25%;
    /*margin-left: 15%;*/
    color:var(--text-white);
    text-align: center;
}

.hero-content strong {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    letter-spacing: 1px;
    padding: 10px 0px !important;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family:"Montserrat";
    
}

.hero-content p {
    letter-spacing: 1px;
    line-height: 1.5rem;
    font-size: 1.5rem;
    font-family: "Poppins Regular";
   
}

.hero-content .hero-content-f-btn {
    background: transparent;
    border: 2px solid var(--text-color);
    padding: 10px 30px;
    color: var(--white);
    border-radius: 60px;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    opacity: .96;
    letter-spacing: 1px;
    margin-top: 1.5rem;

}

.hero-content .hero-content-f-btn:hover {
    background: var(--background);
    color: var(--text-color);
    transition: 0.5s ease;
}

.hero-content  .hero-content-s-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 30px;
    color: var(--text-white);
    border-radius: 60px;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    opacity: .96;
    letter-spacing: 1px;
    margin: 2rem;
    font-family: "Montserrat ";
    font-weight: bold;
}

/* .hero-content .hero-content-s-btn:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--light-black);
    transition: 0.5s ease;
} */
@media (max-width:768px){
    .hero-content {
    position: relative;
    z-index: 2;
    margin-top: 25%;
    color:var(--text-white);
    text-align: center;
}
}
/* about section */
.about-section {
    width: 100%;
    background-color: #F2F2F2;
    background-position: center;
    background-size: cover;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.about-text h3 {
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--primary-color);
}

.about-text .about-text-heading {
    color: #2C3844;
    font-family: "Roboto", Sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3em;
    margin: 20px 0px
}

.about-text .about-text-heading span {
    color: var(--primary-color)
}

.about-text .about-text-paragraph {
    color: #3A3A3A;
    font-family: "Poppins", Sans-serif;
    line-height: 1.7em;
}

.about-section .about-section-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-section .about-section-img img {
    width: 100%;
    height:450px;
    border-radius: 24px;
    margin-top:7%;
}

/* services */
.service {
    margin-top: 6rem;
}

.service h3 {
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--primary-color);
}

.service .service-heading {
    text-align: center;
    color: #3A3A3A;
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 1rem;
}

.service .service-paragraph {
    color: #3A3A3A;
    font-size: 18px;
    font-family: "Poppins", Sans-serif;
    line-height: 1.7em;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;

}

.cards .service-card {
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.cards .service-card:hover {
    background: #2C3844;
    ;
    color: white;
}
.cards .service-card div{
    background-color: var(--primary-color);
    border-radius: 100px;;
   width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.cards .service-card i {
    font-size: 40px;
    color:var(--text-white);
    display: flex;
       justify-content: center;
       align-items: center;
    transition: 0.2s;
}
.cards .service-card:hover i {
    color: white;
}

.cards .cards-heading {
    margin: 1rem 0 0 1rem;
}

.cards-heading a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: 0.3s;
    padding-top: 5px;
}

.service-card:hover {
    color: white;
}

ul {
    margin-top: 5px;
}

ul li {
    margin: 5px 0;
    color: black;
    transition: 0.3s;
}

.service-card:hover ul li {
    color: white;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* get in touch */
.get-in-touch {
  position: relative; /* Required for pseudo-element */
  background-image: url(https://img.freepik.com/free-photo/mid-section-two-unrecognizable-businessmen-shaking-hands-finalize-deal_1098-19499.jpg?ga=GA1.1.57058806.1741594028&semt=ais_hybrid&w=740);
  background-position: center center;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 50px 0;
  z-index: 1;
  color: white; /* Makes text white */
  overflow: hidden;
    
}
.get-in-touch::before{
      content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
  z-index: -1
}
.get-in-touch-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1200px;
    padding: 20px;
}

/* Tablet View (768px and below) */
@media (max-width: 768px) {
    .get-in-touch-section {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

/* Mobile View (576px and below) */
@media (max-width: 768px) {
    .get-in-touch-section {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}

.get-in-touch-heading{
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    padding: 10px;
    text-align: left;
    color: var(--white);
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
}
.get-in-touch-button{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    column-gap: 30px;
}
.get-in-touch-button a{
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    text-transform: none;
    fill: var(--white);
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 30px 30px 30px 30px;
    padding: 16px 025px 16px 025px;
}
/* milestone */
.milestone h3 {
    color: var(--text-black);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
}

.milestone-heading {
    padding: 10px 20px;
    text-align: center;
    line-height: 1.8rem;
}

.milestone-heading .p-heading,
.milestone-heading span {
    text-align: center;
    color: var(--primary-color);
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.milestone-heading p {
    color: var(--text-black);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}

/* Tablet View (768px and below) */
@media (max-width: 768px) {
    .milestone-card{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: column;
}
    
    .milestone-heading {
        padding: 8px 15px;
    }
    
    .milestone-heading .p-heading,
    .milestone-heading span {
        font-size: 36px; /* Reduce heading size */
    }
    
    .milestone-heading p {
        font-size: 16px; /* Reduce paragraph font size */
    }
}

/* Mobile View (576px and below) */
@media (max-width: 768px) {
    .milestone-heading {
        padding: 5px 10px;
    }

    .milestone-heading .p-heading,
    .milestone-heading span {
        font-size: 28px; /* Further reduce heading size */
    }

    .milestone-heading p {
        font-size: 14px; /* Adjust paragraph size */
    }
}
.milestone-card{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    border:1px solid var(--primary-color);
    border-radius: 12px;
    padding:16px 12px;

}

.milestone-card-heading{
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
}
.milestone-card-heading:after{
    content: '';
    background: var(--primary-color);
    height: 2px;
    width: 25px;
    display: block;
    margin-bottom: 10px;
    margin-top: 1px;

}
.milestone-card-text p{
    color: #3A3A3A;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/* choose us  */

.choose-us{
    background-color: var(--text-white);
    padding:60px 5px !important;
    color:var(--white)
}
.choose-us .heading{
    text-transform:uppercase;
    font-size: 20px;
    color:var(--primary-color);
}
.choose-us h3{
    font-size: 46px;
    font-weight: bold;
}
.choose-us ul{
    margin:5px;
}
.choose-us ul li{
    color:var(--white);
    margin-left:-30px
}
/*form*/
.form-demo{
        background-color: var(--primary-color);
         color:var(--text-white);
         border-radius: 10px;
         padding:15px 3px
}
.form-container {
    max-width: 800px;
    margin: auto;
    padding:0px 20px
  }
  .form-container h2{
    text-transform: capitalize;
    text-align: center;
    /* margin: auto; */
    margin-top: 1.5rem;
    font-weight: 500;
}
.form-container p{
    text-align: center;
    margin: 20px;
}
.form-container p span{
    color:var(--text-white)
}
  
  .box {
    background:transparent;
    color:var(--text-white);
    text-align: center;
    padding: 15px 0;
    border-radius: 8px;
    font-weight: bold;
  }

  .form-container .box input, .form-container .box select{
    color:var(--text-white);
    width: 100%;
    height: 40px;
    border-radius: 90px;
    background-color: transparent;
    border: 2px solid var(--text-white);
    padding: 0 0 5px 10px;
    }
    .form-container .box input::placeholder, .form-container .box textarea::placeholder{
        color:var(--text-white);
    }
    .form-container .box select option{
        color:var(--primary-color)
    }
    .form-container .box input:focus , .form-container .box select:focus , .form-container .box textarea:focus {
  outline: none;
  /* border: none; */
}
    .form-container .box textarea{
        width: 100%;
        height:80px;
        border-radius: 20px;
        color:var(--text-white);
        border: 2px solid var(--text-white);
        background: transparent;
        padding:5px 10px;
    }
    .bottom-section .box p{
        text-align: left;
        margin: 0px;
    }
    .bottom-section .box p input {
        width: 5%;
        height: 15px;
        border-radius: 90px;
        background-color: transparent;
        border: 2px solid var(--text-white);
    
    }
    
    .bottom-section .box p span{
    color:var(--text-white);
    }
    .bottom-section .form-btn{
        padding: 10px 40px;
        display: flex;
        align-items: center;
        justify-content: center;;
        border:2px solid var(--text-white);
        border-radius: 90px;
        background: var(--text-white);
        margin:auto;
        margin-top:10px;
        margin-bottom: 20px;
        cursor: pointer;
    }
    .form-btn{
        margin: 0;
        color:var(--primary-color);
        font-weight: 500;
        text-transform: uppercase;
    }
    .form-btn p i{
        color:var(--text-white);
    }
    /*bopup box*/
   
    /* Responsive styles */
@media (max-width: 768px) {
    .top-section {
      flex-direction: column;
    }
  
    .column {
      width: 100%;
    }
  }

/*foter*/
footer{
    background-color: var(--footer);
    color:var(--text-white);
    padding-top: 20px 20px;
}
footer .footer-left img{
    width: 150px;
    height:auto;
}
footer .footer-left p {
    margin-top: 20px;
    margin-bottom: 20px ;
    display: block;
    font-size: 18px;
    line-height: 26px;
}
footer .social-links{
padding: 10px 10px;
gap:10px
}
footer .social-links .fb-link{
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 100%;
    /* margin: auto 1px; */
    cursor:pointer;

}
footer .social-links .fb-link a{
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color:var(--white);
    border-radius: 100%;
    /* margin: auto 1px; */
    background: var(--primary-color) !important;
}
.footer-left .footer-contact a{
    color:var(--white);

}

footer .footer-right{
    text-align:end;
    padding-right: 10px;

}
.footer-right .footer-right-link ul{
    color: var(--white);
    display: flex;
    justify-content: end;
    padding-top: 20px;
}
.footer-right .footer-right-link ul li{
    list-style: none;
    font-size: 18px;
    padding-left: 10px;
    color: var(--white);
}
/*.footer-right .footer-right-link ul li:not(:last-child):after{*/
/*    content: '|' !important;*/
/*    margin: 0 10px;*/
/*    position: unset;*/
/*    color: #fff;*/
/*    font-weight: 500 !important;*/

/*}*/
.footer-right .footer-right-link ul li a{
    font-weight: 500 !important;
    color: #fff !important;
}
.footer-right .footer-right-contact p{
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-top: 7px !important;
    margin-bottom: 20px;
    ;
}
.footer-right .footer-right-contact a{
    background: var(--primary-color) !important;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 25px;
    /* margin-top: 10px; */
    border-radius: 30px;
}
footer .footer-line{
    width:100% ;
    height:0.2rem;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    footer .footer-right{
        text-align:start;
        /* padding-right: 10px; */
    }

    .footer-right .footer-right-link ul li:not(:last-child):after{
        content: '' !important;
        margin: 0 0px;
    }
    .footer-right .footer-right-link ul{
        color: var(--white);
        display: flex;
        justify-content: start;
        padding-top: 20px;
    }
    .footer-right .footer-right-link ul li{
        list-style: none;
        font-size: 18px;
        padding-left: 10px;
        color: var(--white);
    }
}
/* owl carousel */
/* ✅ Dots ko neeche center me lane ke liye */
/* Custom Navigation Buttons */
.item{
    border:1px solid var(--primary-color);

}
.item-text{
    background-color: var(--gray-light);
    padding:5px 0px 5px 10px;
    width: 100%;
    height: fit-content;
}
.item-text h3{
    color:var(--primary-color)
}
.item-text p{
    color:var(--light-black)
}
.custom-nav {
    text-align: center;
    margin-top: 10px;
}

.custom-nav button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.custom-nav button:hover {
    background: #ff5733;
}

/* Custom Dots */
.custom-dots {
    text-align: center;
    margin-top: 10px;
}

.custom-dots .dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.custom-dots .dot.active {
    background: #ff5733;
    width: 14px;
    height: 14px;
}
