* { 
    margin: 0;
    padding: 0;
    font-family: "Titillium Web",sans-serif;
}

#header{
    height: 100vh;
    background-image: url(img/background-1.jpg);
    background-position: center;
    background-size: cover;
}
.container{
    margin-right: 100px;
    margin-left: 100px;
}
.logo{
    margin-top: 30px;
    width: 100px;
}

.header-text{
    max-width: 350px;
    margin-top: 40px;
}
.square{
    height: 6px;
    width: 150px;
    display: inline-block;
    background-color: blue;
    margin: 15px 0;
    border-radius: 100px;
}
.common-btn {
    padding: 10px 40px;
    background: transparent;
    outline: none;
    border: 2px solid blue;
    font-weight: bold;
    cursor: pointer;
    border-radius: 100px;
    color: blue;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.common-btn:hover {
    background-color: blue;
    color: white;
}

p {
    font-size: 15px;
    line-height: 18px;
    color: #777;
}

.header-text button{
    margin-top: 20px;
    margin-bottom: 60px;
} 

.line-1{
    width: 40px;
    height: 1px;
    background: blue;
    display: inline-block;
    border-radius: 100px;
}
.line-2{
    width: 60px;
    height: 1px;
    background: blue;
    display: inline-block;
    border-radius: 100px;
}
.line-3{
    width: 50px;
    height: 1px;
    background: blue;
    display: inline-block;
    border-radius: 100px;
}
.line{ 
    height: 8px;
}

#sideNav{
    width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background: blue;
    z-index: 2;
    transition: .5s;
}

nav ul li{
    list-style: none;
    margin: 25px 20px;

}

nav ul li a{
    text-decoration: none;
    color: #fff;
}

#menuBtn{
    width: 50px;
    position: fixed;
    right: 30px;
    top: 35px;
    z-index: 2;
    cursor: pointer;

}



/*about---*/

#about{
    padding: 100px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
 
.about-left-col{
    flex-basis: 50%;
}

.about-left-col img{
    width: 100%;
}

.about-right-col{
    flex-basis: 50%;
    text-align: right;
}

.about-text{
    max-width: 500px;
    margin-right: 100px;
    display: inline-block;
}
.about-text h2{
    margin: 25px 0 10px;
    font-size: 28px;
    font-style: italic;
    color: blue;
}

.about-text h3{
    color: darkblue;
    font-size: 28px;
    font-style: italic;
}

.square-1{
    height: 3px;
    width: 80px;
    display: inline-block;
    background-color: blue;
    margin: 15px 0;
    border-radius: 10000px;
}

/*features*/

#features{
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-row{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature-col{
    flex-basis: 25%;
    text-align: center;
}
.feature-col img{
    width: 100px;
}
.feature-col h4{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
}
.feature-btn{
    margin: 80px auto 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/*Services*/

#services{
    padding: 100px 0;
}
.service-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.service-right-col{
    flex-basis: 50%;
}
.service-right-col img{
    width: 100%;
}
.service-left-col{
    flex-basis: 50%;
}

.service-text{
    max-width: 350px;
}
.service-text button{
    margin: 30px 0;
}

/*Contact*/

.contact-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}
.contact-left-col, .contact-right-col{
    flex-basis: 50%;
}

.contact-right-col img{
    width: 100%;
}

 form{
    max-width: 350px;
    margin: 30px 0;
}
form input{
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 5px;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    border: 2px solid blue;
}

.btn-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.btn-box button{
    flex-basis: 48%;

}


/* Footer Section */
#footer {
    padding: 20px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-left-col,
.footer-right-col {
    flex: 1;
}

.footer-left-col p,
.footer-right-col p {
    margin: 0;
}
#footer a {
    text-decoration: none;
    font-weight: bold;
    color: darkblue;
    transition: .5s;
}
#footer a:hover {
    color: red;
}



/* Media Queries */
@media (max-width: 768px) {
    .header-text h1 {
        font-size: 2em;
    }

    .header-text p {
        font-size: 1em;
    }

    .feature-col {
        flex-basis: 100%;
    }

    .service-left-col,
    .service-right-col,
    .contact-left-col,
    .contact-right-col {
        flex-basis: 100%;
    }
    .footer-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-left-col,
    .footer-right-col {
        text-align: center;
        margin-bottom: 10px;
    }


    #sideNav {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.5em;
    }

    .header-text p {
        font-size: 0.9em;
    }

    .container {
        margin: 0 10px;
    }

    .about-text h1 {
        font-size: 1.8em;
    }
    #about img{
        width: 100%;
    }

    .about-text h2,
    .about-text h3 {
        font-size: 1.2em;
    }

    .feature-col img {
        width: 80px;
    }
    .footer-left-col p,
    .footer-right-col p {
        font-size: 14px;
    }
}


/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 5px;
}

.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: whitesmoke;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px; /* Adjust width as needed */
    border-radius: 4px;
}

.submenu li {
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 10px;
    color: #0000ff;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: rgb(255, 255, 255);
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}



.team{
    padding: 0px 25px;
    margin: 15px 0;
    color: #0000ff;
}

.team ul a{
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.team ul a:hover {
    color: blue;
    text-decoration: none;
}

/*services*/

/* Container for both columns */
.services-section {
    display: flex;
    gap: 250px; /* Space between the two columns */
    margin: 35px 35px;
}

/* Left column */
.services-info {
    max-width: 700px;
    flex: 2;
}

.services-info h2{
    color: #0000ff;
    font-weight: 200;
}

/* Right column */
.services {
    flex: 1;
    max-width: 1000px;
    
}

.services h1{
    color: #0000ff;
    font-weight: 700;
}

/* Style for the list items */
.services ul {
    list-style-type: none;
    padding: 0;
}

.services ul li {
    margin: 5px 0;
}

/* Links inside the list */
.services ul li a {
    text-decoration: none;
    color: darkblue;
}

/* Hover effect for links */
.services ul li a:hover {
    color: red;
}



/*Square*/
.square-2{
    height: 1px;
    width: 150px;
    display: inline-block;
    background-color: blue;
    margin: 15px 0;
    border-radius: 100px;
    text-decoration: dotted;
}


/* General Styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section {
    display: flex;
    flex-wrap: wrap; /* Allow the items to wrap */
    gap: 20px;
    margin: 20px 0;
}

/* Left column */
.services-info {
    flex: 1 1 100%; /* Full width on small screens */
    max-width: 500px;
    padding: 35px
}

/* Right column */
.services {
    flex: 1 1 100%; /* Full width on small screens */
}

/* Media Query for Larger Screens */
@media (min-width: 768px) {
    .services-info, .services {
        flex: 1; /* Both columns take equal space */
    }
}

/* Styling for the list */
.services h1{
    padding: 35px;
}
.services ul {
    list-style-type: none;
    padding: 35px;
}

.services ul li {
    margin: 25px 0;
}

.services ul li a {
    text-decoration: none;
    color: darkblue;
}

.services ul li a:hover {
    color: red;
}




/*recognition*/

.recognition{
    padding: 35px;
}

.recognition h2{
    color: #0000ff
}


/* Slider container */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

/* Slides container */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual images */
.slides img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}