/*import*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* universal */


*{
    font-family: "Montserrat", sans-serif;
}
.container{

    width: 90%;
    max-width: 1440px;

}

.BoxShadows {
    box-shadow: 0px 5px 30px 0px #00000026;
}

.nav-point{

    min-height: 50px;

}

/* Navbar Css*/

#navbar{
    width: 100%;
    background-color: #D9D9D9;
    position: fixed;
    display: flex;
    align-items: center;
    min-height: 100px;
    top:0;
    padding: 0 15px;
    z-index: 9999;
}

#logo-box{
    margin-left: 50px;
    margin-right: auto;
    max-width: 8rem;
}

#nav{

    display: flex;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav li {

    
    color: #222D52;
    text-decoration: none;
    padding: 10px 15px;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 15px;
    margin-right: 15px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #222D52;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile navbar styles */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    #nav {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background-color: #D9D9D9;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    #nav.active {
        left: 0;
    }

    #nav li {
        margin: 10px 0;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

#nav li a{

    color:#222D52;

}

/* Body -> WEb Lander */

#lander {
    height: 70vh;
    margin-top: 4rem;
}

#lander-content {
    margin: auto;
    display: flex;
    height: 100%;
    background-image:linear-gradient(rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.75) 100%) ,url(../images/MD-bg.png);
    background-size: contain;
    background-position-x: center;
    background-position-y: top;
    justify-content: center;
    flex-direction: column;
    background-repeat: no-repeat;
}


#webheader{

    width: 85%;

}
#header{

    font-size: 42px;
    color: black;
    font-weight: 900;

}
#lander .row {

    flex-wrap: nowrap;
    margin-top: 25px;
    justify-content: center;

}
#cta{
    min-height: 100px;
    display: flex;
    align-items: flex-start;
}

.fa-envelope:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 900;
}

.fa-solid.fa-envelope {
    margin-right: 10px;
    font-size: 24px;
    font-style: normal;
}

.btn{

    height: 50px;
    background-color: #222D52;
    color: #fff;
    font-size: 24px;
    border-radius: 10px;
    margin: 0 .5rem;
    transition: all 0.3s ease;
}

.btn-wtsapp{
background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-wtsapp:hover {
    background-color: #128C7E !important;
    border-color: #128C7E;
    transform: none;
}

.btn:hover {
    color: #fff;
    font-weight: 700;
    background-color: #1034ab;
    height: 60px;
    box-shadow: 0 4px 8px #1034ab4f;
}


#subheading-box{

    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

}

#subheading{

   
font-size: 20px;
color: #222D52;
font-weight: 600;
}

/*About Us section*/
.about-section {
    margin-top: 100px;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), url(../images/MD-bg.png);
    background-size: contain;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
}

.about-body {
    font-size: 1.1rem;
    color: #222D52;
    text-align: left;
    line-height: 1.6;
}
.about-body p{
margin-bottom: 1rem;
}
/*Process section*/
.Process{
padding: 0 15px;

}
.section-header{

    font-size: 32px;
    color: #222D52;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    text-decoration: underline;
    font-weight: 700;

}

#process-row{
    flex-wrap: nowrap;
    margin-top: 25px;
    justify-content: center;
}

.process-box{

    display: flex;
    flex-direction: column;
    align-items: center;
    height: 250px;
    border: 1px solid #222D52;
    border-radius: 10px;

}

.icon-circle{

    height: 60px;
    display: flex;
    width: 60px;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid #222D52;
    justify-content: center;
    align-items: center;
}

.fa-phone:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900;
}

.fa-headphones:before {
    content: "\f025";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


.fa-dollar-sign:before {
    content: "\f155";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa-solid.fa-phone{

    font-size:30px;
    color: #222D52;
    font-style: normal;
}

.fa-solid.fa-headphones{

    font-size: 30px;
    color: #222D52;
    font-style: normal;

}

.fa-solid.fa-dollar-sign{

    font-size: 30px;
    color: #222D52;
    font-style: normal;
}

.text{
    text-align: center;
font-size: 16px;
display: flex;
justify-content: center;
align-items: center;

}


/*Problem section*/

#Problems .problem-intro p {
    font-size: 1.1rem;
    color: #222D52; 
    text-align: left;
    line-height: 1.6;
}

.icon-circle-problem{

    height: 60px;
    display: flex;
    width: 60px;
    border-radius: 50%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 20px;
}

.card {
    border: 2px solid #EEE5D9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 3px #00000020;
    transition: transform 0.3s ease-in-out;
    height: 210px;
}
    
/* .card:hover {
    transform: translateY(-5px);
} */
    
.card-body {
    padding: 2rem;
}
    
.card-title {
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
}
    
.icon {
    max-width: 40px;
    height: 40px;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

.card:hover .icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/*Team section*/

/* Member image styling */
.team-member{
margin: 2rem auto;

}

.member-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}


.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Member info styling */
.member-name {
    color: #29315F;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-position {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Custom container width */
@media (min-width: 1200px) {
    .container {
        max-width: 90%;
    }
}



.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.member-name {
    color: #29315F;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.member-position {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* carousel-specific styles */
#team-carousel {
    display: none;
}

#teamGrid {
    display: block;
}

.main-gallery .flickity-prev-next-button.next{
    display:none;
  }
  .main-gallery .flickity-prev-next-button.previous{
    display:none;
  }

@media (max-width: 768px) {
    #teamCarousel {
        display: block;
    }
    
    #teamGrid {
        display: none;
    }
    
    
}

@media (min-width: 1200px) {
    .container {
        max-width: 90%;
    }
}

/*Form section*/
.form-container {
    position: relative;
    background-color: #222D52A6;
    border-radius: 30px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 3.5rem auto;
}

.success-content {
    color: white;
    padding: 2rem;
}

.success-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.success-content p {
    font-size: 1.2rem;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-control {
    border: 2px solid #222D52;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.submit-btn {
    background-color: #222D52;
    color: #EEE5D9;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0d1757;
}

.form-check {
    margin-top: 1rem;
    margin-bottom: 1.5rem;

}

/* Footer section */
.footer-section {
    background-color: #D9D9D9;
    padding-top: 3em;
}

.disclaimer-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 0.5em;
}

.disclaimer-section h2 {
    color: #1a237e;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.disclaimer-text {
    color: #444;
    line-height: 1.6;
}

.disclaimer-text a {
    color: #0d6efd;
    text-decoration: none;
    cursor: pointer;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

.corporate-info {
    padding: 20px;
}

.modal-dialog-centered {
    margin-top: 2rem;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    color: #495057;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.modal-content .connect-btn {
    background-color: #222D52;
    color: white;
    padding: 0.75rem 2em;
    border: none;
    transition: background-color 0.3s ease;
    display: inline-block;  
    text-decoration: none;  
    margin-top: 1rem;      
    position: relative;    

    width: auto;           
    max-width: fit-content; 
    align-self: flex-start; 
}

.modal-content .connect-btn:hover {
    background-color: #0d1757;
    color: white;          
    text-decoration: none; 
}

.corporate-info {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content {
    padding: 0.1em 0;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1em;
}

.menu-section h3 {
    color: #1a237e;
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.menu-links {
    list-style: none;
    padding: 0;
}

.menu-links li {
    margin-bottom: 0.75em;
}

.menu-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #1a237e;
}

.contact-info {
    margin-bottom: 1.5em;
}

.contact-info p {
    color: #444;
    margin-bottom: 0.5em;
}

.newsletter-form .form-control {
    padding: 0.75em;
    margin-bottom: 1em;
    border: 2px solid #3E4764;
    border-radius: 0;
    color: #222D527A;
    background-color: #D9D9D9;
}

.connect-btn {
    background-color: #222D52;
    color: white;
    padding: 0.75rem 2em;
    border: none;
    transition: background-color 0.3s ease;
}

.connect-btn:hover {
    background-color: #0d1757;
}

.social-icons {
    margin-top: 1em;
}

.social-icons a {
    color: #1a237e;
    margin-right: 1em;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0d1757;
}

.copyright {
    background-color: #222D52;
    color: #EEE5D9;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2em;
}


/* Service section */
.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Title overlay styling */
.service-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFFAD;
    padding: 10px 30px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #222D52;
    margin: 0;
    transition: all 0.3s ease;
}

/* Description styling */
.service-description {
    font-size: 14px;
    position: absolute;
    top: 120px;  /* Adjust based on your title size */
    left: 0;
    right: 0;
    padding: 20px;
    color: #000000;
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

/* Hover effects */
.service-card:hover {
    height: 500px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover img {
    opacity: 0;
}

.service-card:hover .service-title-overlay {
    top: 30px;
    transform: translate(-50%, 0);
    background-color: transparent;
}

.service-card:hover .service-description {
    opacity: 1;
    display: block;
}

/* Whatsapp Contact */
#contact .whatsapp-contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 30px;
    margin-bottom: 2.5rem;
}

#contact .whatsapp-contact-section .contact-text {
    flex-grow: 1;
    padding-right: 20px;
}

#contact .whatsapp-contact-section .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#contact .whatsapp-contact-section .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

#contact .whatsapp-contact-section .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: none; 
}

/* media queries*/ 

@media (min-width:1440px){

/*#lander{

margin-top: 150px;

} */


}


@media (max-width:1024px){


    #lander-content {
        margin-top: 50px;
    padding-left: 15px;
    
        padding-right: 15px;
        justify-content: center;
        align-items: center;
    }
    #header {
        font-size: 30px;
        margin-bottom: 2rem;
    }
    #lander .row {
        flex-wrap: wrap;
        width: 88%;
    }
    #subheading {
        font-size: 18px;
        text-align: center;
    }
    .service-card:hover {
        height: 575px;
    }

}

/*tablet*/

@media (max-width:991px){

    .process-box {

        height: auto;
        margin-top: 2rem;
    }

    #process-row{

        flex-wrap: wrap;

    }
    #cta{
        flex-wrap: wrap;
    }

    /*carousel styling */
    #teamGrid {
        display: none;
    }

    #team-carousel{

        display: block;

    }
    .main-gallery {
        display: flex;
        justify-content: center;
    }
    .main-gallery .flickity-viewport{
        height:100%;
      }
      .gallery-cell {
        width: 90%;
        padding-left: 15px;
        padding-right: 15px;
      }

      .member-image{

        height: 400px;
        box-shadow: unset;

      }
      .member-image img{

        object-fit:contain;

      }

      .img-fluid{

        box-shadow:4px 8px rgba(0,0,0,0.1)

      }
      #contact{
        width: 100%;
      }
}

/*mobile*/

@media (max-width: 480px) {
    #cta{
    justify-content: center;
    }
    #lander {
        height: 85vh;
        margin-top: 8rem;
    }
    #header {
        font-size: 28px;;
    }

    .service-card:hover {
        height: 450px;
    }
    #lander-content {
        margin-top: 85px;

    }
    .btn{
        margin: .5rem auto;
    }
    #subheading{
        text-align:center;
    }
}

@media (max-width: 430px) {
    #lander { 
        margin-top:8rem;
    }
}

@media (max-width: 414px) {
    #lander {
        margin-top: 10rem;
    }
}
@media (max-width: 390px) {
#lander {
    margin-top: 11rem;
}
}

@media (max-width: 375px) {
    #lander {
        margin-top: 11rem;
    }
}
@media (max-width: 320px) {
    #lander {
        margin-top: 17rem;
    }
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .nav-tabs .nav-item {
        flex: 1 1 auto;
        text-align: center;
        margin-bottom: 5px;
    }
}

/* Whatsapp */
@media (max-width: 768px) {
    #contact .whatsapp-contact-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }
    
    #contact .whatsapp-contact-section .contact-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
}
