*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
body{
    margin-top: 3.5rem;
    width: 100%;
    overflow-x: hidden; 
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    background-color: white;
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    padding-left: 25px;
}
.logo img{
    font-weight: initial;
    width: 170px;
    margin-top: 15px;
}
.logoText{
    margin-left: .5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f3350;
}

.nav{
    height: 3.5rem;
}
.nav__data{
    height:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__toggle{
    position: relative;
    width: 50px;
    height: 64px;
}
.nav__menu_logo,
.nav__close_logo{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
     padding-top: 15px;
}
.nav__close_logo{
    opacity: 0;
}
@media screen and (max-width: 1037px){
    .nav__menu{
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        background-color: gray;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity:0;
        transition: top .4s, opacity .3s;
    } 
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        background-color: white;
        padding-top: 1rem;
    }
}
@media screen and (min-width: 1037px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: 5.5rem;
        display: flex;
        justify-content: space-between;
        padding-left: 7%;
        padding-right: 7%;
    }
    .nav__toggle{
        display: none;
    }
    .nav__list{
        height: 75%;
        display: flex;
        
    }
    .nav__link,.nav__link_{
        height: 85%;
        padding:0;
        justify-content: initial;
        column-gap: 1rem;
    }
    .dropdown__menu{
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .dropdown__link:hover{
        background-color: #d1e3ff;
    }
    .nav__link_{
        margin-left: 10px;
    }
}
.nav__link{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link_{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link:hover{
    color: #2c5a9e;
}

.show-menu{
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}
.show-icon .nav__menu_logo{
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav__close_logo{
    opacity: 1;
    transform: rotate(90deg);
}
.dropdown__link{
    padding:.25rem 1.25rem 1.25rem 2.5rem ;
    color: #1f3350;
    font-weight: bold;
    display: flex;
    align-items: center;
    
}
.dropdown__menu{
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height .4s ease-out;
}
.dropdown__item:hover .dropdown__menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/*end menu*/

/*start-div1*/
.div1{
padding-bottom: 80px;
padding-top: 120px;
background-color: #1a365d;
width: 100%;
}
.div1 h1{ 
    width: 100%;
    height: 48px;
    padding-bottom: 24px;
    font-size: 48px;
    color: white;
}
.div1 p{ 
    font-size: 23px;
    color: white;
    text-align: center;
    margin: 0 auto;
    max-width: 674px; 
    line-height: 1.5;
    padding-bottom: 24px;
    @media (max-width:937px) {
        margin-top: 100px;
    }
}

.div1 div{
    text-align: center;
}
/*end-div1*/
/*start-div2*/
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image-container {
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-content {
  padding: 50px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 10px;
}

.service-content p {
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #172554;
}

.order-btn {
  background: #172554;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #3182ce;
}

@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/*end-div2*/

/*start-div3*/

.process-section {
  padding: 96px 20px;
  padding-top: 120px ;
  background-color: #f8fafc;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  color: #1a365d;
  margin-bottom: 60px;
}
.section-title::after {
    margin-left: 43.5%;
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e9b94a;
    margin-top: 1rem;
    }

.steps-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #172554;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #1f4c8e;
  margin-bottom: 10px;
  text-align: center;
}

.step-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1.1rem;
  text-align: center;
}

.custom-service {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
}

.custom-service p {
  color: #4a5568;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: #172554;
  color: white;
}

.cta-button.primary:hover {
  background-color: #4299e1;
  color: #172554;
}

.cta-button.secondary {
  background-color: white;
  color: #172554;
  border: 2px solid #172554;
}

.cta-button.secondary:hover {
  background-color: #ebf8ff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button {
    width: 80%;
    text-align: center;
  }
}

/*end-div3*/



/*footer*/
    .footer {
            background-color: #172554;
            color: white;
            padding: 0 10%;
            padding-top: 48px;
            padding-bottom: 15px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-brand {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .footer-brand h1 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: #c7d2ec;
            font-size: 1.25rem;
        }
        .bott_logo{
            display: flex;
            gap: 10px;
        }
        .bott_logo img{
            width: 40px;
            height: 40px;
        }
        .bott_logo h1{
            padding-top: 10px;
        }
        .sm-links{
            margin-top: 16px;
            display: flex;
            gap: 10px;
        }
        .footer-section{
            margin-top: 32px;
        }
        .footer-section h2 {
            color: #ffffff;
            font-size: 1.3rem;
            padding-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #c7d2ec;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .contact-info {
            list-style: none;
            font-size: 1.15rem;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
                        color: #c7d2ec;
        }
        
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            margin-top: 48px;
            padding-bottom: 18px;
            
        }
        
        .footer-links-horizontal {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer-links-horizontal a {
            color: #a6abc09e;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .footer-links-horizontal a:hover {
            color: white;
        }
        
        .copyright {
            color: #a6abc09e;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
             .footer-bottom {
                flex-direction: column;
                gap: 15px;
        }
                .footer-links-horizontal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
                .footer-links-horizontal a {
            max-width: 130px;
        }
                .footer-links-horizontal {
            gap: 1rem;
        }
            .footer-section {
                margin-bottom: 2rem;
            }
        }
