@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro|Poppins:600,700|Work+Sans:600&amp;display=swap';
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #03a3a3;
    --secondary-color: #003366;
    --accent-color: #0066cc;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #ffffff;
    --bg-grey: #f7f7f7;
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: -.2px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./Dotted\ background.png');
    background-size: 200px;
    opacity: 0.2;
    z-index: -1;
}

.hero {
    padding: 0px 150px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.navbar {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar:hover {
    box-shadow: var(--shadow-medium);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: auto;
    transition: var(--transition-fast);
}

.company-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 12px;
    display: inline-block;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px;
    display: block;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-light);
    width: 230px;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: rgba(3, 163, 163, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.details {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(3, 163, 163, 0.3);
    display: inline-block;
}

.details:hover {
    background-color: #028a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 163, 163, 0.4);
}

.sidebar-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 280px;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-medium);
    padding: 20px;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 1500;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    margin-bottom: 30px;
    text-align: center;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.sidebar-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.sidebar-logo span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-item {
    margin: 20px 0;
}

.sidebar-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 10px;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background-color: rgba(3, 163, 163, 0.1);
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-dark);
}

.slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 100px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    filter: brightness(0.5);
    animation: scaleAnimation 5s infinite alternate;
}

.about {
    margin: 200px 0px;
}

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

.text-section {
    flex: 1;
    padding-right: 40px;
}

.text-section h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #002855;
}

.text-section p {
    font-size: 0.9rem;
    color: #1d182491;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cards-section {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serv {
    box-shadow: 0px 0px 10px #009c94;
}

.card {
    background-color: #fff;
    /* border-radius: 8px; */
    height: 400px;
    padding: 50px 20px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
    width: 300px;
    line-height: 1.6;
    position: absolute;
    transition: transform 0.4s ease, z-index 0.2s ease;
    z-index: 1;
}

.card h2 {
    font-size: 1.5rem;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
}

.card p, .card ul {
    font-size: 1rem;
    color: #02020263;
}

.card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card-front {
    transform: translate(0, 0) rotate(4deg) scale(1);
    z-index: 2;
}

.card-left {
    transform: translate(-150px, 50px) rotate(-10deg) scale(0.9);
}

.card-right {
    transform: translate(200px, 50px) rotate(10deg) scale(0.9);
}

.card-left:hover {
    transform: translate(0, 0) scale(1);
    z-index: 3;
}

.card-right:hover {
    transform: translate(0, 0) scale(1);
    z-index: 3;
}

.card-front:hover {
    transform: scale(1.05);
}

h1 {
    font-family: product-sans, sans-serif;
}

::selection {
    background-color: #42bdcc;
    color: #fff
}

p {
    font-family:  sans-serif;
}

#products {
    margin-top: 40px;
}

.products-heading {
    font-size: 2em;
}

.services h1 { 
    margin-bottom: 30px; 
    width: 700px;
    color: #002855;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px 20px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card h2 {
    font-size: 1.5rem;
    color: #2f2f2f; 
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
}

.learn-more {
    position: relative;
    padding: 12px 15px;
    background-color: #03a3a3;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}


@keyframes scaleAnimation {
    0% {
        transform: scale(1);
        filter: brightness(0);
    }

    50%{
        filter: brightness(0.5);
    }

    100% {
        transform: scale(1.2);
    }
}

.text {
    position: absolute;
    bottom: 200px;
    left: 80px;
    color: white;
    padding: 15px;
}

.text h1 {
    font-family: Funnel Sans, sans-serif;
    font-size: 32pt;
    margin-bottom: 20px;
    text-align: left;
}

.text p {
    font-size: 14pt;
}

.btn {
    position: absolute;
    padding: 10px 20px;
    background-color: #03a3a3;
    color: white;
    font-size: 12px;
    text-decoration: none;
    transition: 0.5s ease;
    margin-top: 20px;
}

.btn:hover{
    background-color: #028787;

}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slide:not(.active) {
    display: none;
}

.logo-slider {
    padding: 60px 100px;
    position: relative;
    text-align: center;
}

.logo-slider h1 {
    font-size: 2.3rem;
    color: #002855;
    margin-bottom: 30px;
}

.logos-wrapper {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.logos {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.logo-item {
    flex: 0 0 20%;
    padding: 20px; 
    box-sizing: border-box;
}

.logo-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.slide-btn {
    background-color: rgba(0, 40, 85, 0.7);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 24px;
    border-radius: 50%; 
}

.left-btn {
    left: 20px; 
}

.right-btn {
    right: 20px;
}

.slide-btn:hover {
    background-color: #0056b3; 
}

.clients {
    padding: 60px 100px;
    /* background-color: #f0f4f8; Light background for contrast */
    text-align: center;
}

.clients h1 {
    font-size: 2.3rem;
    color: #002855;
    margin-bottom: 30px;
}

.clients-grid {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    column-count: 5;
}

.client-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    align-items: center;
    overflow: hidden;
    border-radius: 10px; 
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.client-logo img {
    width: 80%; 
    height: 80%;
    object-fit: contain;
}

.footer {
    background-color: #003366; 
    color: #ffffff;
    padding: 60px 0 30px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #03a3a3, #0066cc, #03a3a3);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #03a3a3;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #03a3a3;
}

.footer-section p,
.footer-section ul {
    margin: 0;
    padding: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 12px 0;
}

.footer-section ul li a {
    color: #ffffff; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #03a3a3;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center; 
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #00ffff;
    transition: 0.5s ease;
}

.footer-bottom a:hover {
    color: #01bdbd;
}

.social-media a {
    color: #ffffff; 
    margin: 0 15px;
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #03a3a3;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.contact-info p i {
    position: absolute;
    left: 0;
    color: #03a3a3;
}

main {
    padding: 20px;
}

.service-detail {
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.service-detail h2 {
    color: #007acc;
}

.service-detail h3 {
    color: #005999;
    margin-top: 20px;
}

.service-detail p, 
.service-detail ul {
    margin: 15px 0;
}

.service-detail ul {
    padding-left: 20px;
}

.service-detail ul li {
    margin-bottom: 10px;
}

.service-detail ol {
    padding-left: 20px;
}

.service-detail a {
    margin-top: 20px;
    color: #0080ff;
    border-radius: 5px;
    text-decoration: none;
}

.service-detail a:hover {
    text-decoration: underline;

}

.contact-form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 15px;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.contact-form-container h2 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 163, 163, 0.1);
    outline: none;
    background-color: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    width: auto;
    min-width: 150px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin: 20px auto;
    display: block;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

.contact-email {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-email h3 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact-email a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: var(--secondary-color);
}

/* FAQ Section Styling */
.faq-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #004d7a;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  text-align: left;
  background: #004d7a;
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #003554;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fafafa;
  transition: all 0.4s ease;
}
.faq-answer p {
  margin: 15px 0;
  font-size: 0.95rem;
  color: #333;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}


#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: none;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #02999e;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: 0.4s ease;
}

#scrollToTopBtn.show {
    display: block;
    opacity: 1;
    animation: popIn 0.3s ease forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#scrollToTopBtn:hover {
    background-color: #006b6f;
}


@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero {
        padding: 0px 20px;
    }

    .navbar-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .logo-img {
        width: 45px;
    }

    .slide img{
        height: 100vh;
        object-fit: cover;
    }

    .slide h1 {
        font-size: 2rem;
    }

    .about {
        margin: 50px 0px;
    }

    .text {
        bottom: 40%;
        left: 15px;
        padding: 10px;
    }

    .text h1 {
        font-size: 16pt; 
    }

    .text p {
        font-size: 10pt;
    }


    .text-section h1{
        font-size: 20pt;
    }

    .learn-more {
        position: relative;
        padding: 12px 15px;
        background-color: #03a3a3;
        color: white;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .controls button {
        font-size: 16px;
        padding: 8px;
    }

    .content {
        flex-direction: column;
        align-items: flex-start;
    }

    .text-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .text-section h1{
        font-size: 1.5rem;
    }

    .text-section p{
        font-size: 1rem;
    }

    .cards-section {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        margin-top: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 330px;
        height: auto;
        position: relative;
        transition: transform 0.4s ease, z-index 0.2s ease;
        z-index: 1;
    }
    .card h2 {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 15px;
    }
    
    .card ul {
        list-style-type: disc;
        padding-left: 20px;
    }
    
    .card-front {
        transform: scale(1);
        z-index: 2;
    }
    
    .card-left {
        transform: scale(1);
    }
    
    .card-right {
        transform: scale(1);
    }

    .card:active {
        z-index: 2;
        transform: scale(1.05); 
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card{
        margin-left: -16px;
        height: auto;
        width: 320px;
    }

    .services p{
        font-size: 0.7rem;
    }

    .services h1 {
        font-size: 1.4rem;
        width: 300px;
    }

    .logo-slider {
        padding: 60px 20px;
    }

    .logo-slider h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 0 20px ;
        color: #002855;
    }
    
    .logos {
        display: flex;
        align-items: center;
    }
    
    .logo-item {
        flex: 0 0 100px;
        margin: 10px;
        display: flex;
        justify-content: center; 
        max-width: 200px;
    }
    
    .left-btn {
        top: 240px;
        left: 0px;
    }
    
    .right-btn {
        top: 240px;
        right: 0px;
    }

    .contact-form-container {
        margin: 20px;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .contact-form-container h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .contact-form-container p {
        font-size: 0.9em;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.9em;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95em;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1em;
    }

    .contact-email {
        margin-top: 30px;
        padding: 20px 15px;
    }

    .contact-email h3 {
        font-size: 1.1em;
    }

    .contact-email p {
        font-size: 0.9em;
        margin-bottom: 12px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients h1{
        font-size: 1.5rem;
    }

    .contact {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-section {
        margin: 20px 0;
        min-width: 100%;
    }

    .social-media a {
        margin: 0 10px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 0.3s ease;
        background-color: rgba(3, 163, 163, 0.1);
    }
    
    .nav-item.dropdown-active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
    }
    
    .dropdown-menu a {
        padding-left: 25px;
    }
    
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        margin: 10px;
        padding: 20px 15px;
    }

    .contact-form-container h2 {
        font-size: 1.5em;
    }

    .contact-form-container p {
        font-size: 0.85em;
    }

    .form-group label {
        font-size: 0.85em;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9em;
    }

    .submit-button {
        padding: 12px 16px;
        font-size: 0.95em;
    }

    .contact-email {
        margin-top: 25px;
        padding: 15px 10px;
    }

    .contact-email h3 {
        font-size: 1em;
    }

    .contact-email p {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    /* Improve touch targets for mobile */
    .form-group input,
    .form-group textarea,
    .submit-button {
        -webkit-tap-highlight-color: transparent;
    }

    /* Add some spacing between icon and text in labels */
    .form-group label i {
        margin-right: 8px;
        width: 16px;
        text-align: center;
    }

    .clients {
        padding: 20px;
    }
    
    .clients-grid {
        display: block;
        column-count: 2; 
    }
    
    .client-logo {
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .client-logo img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }
    
    .client-logo:hover img {
        transform: scale(1.1);
    }
}

/* Scrolled Navbar Effect */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 70px;
}

.navbar.scrolled .logo-img {
    width: 45px;
}

.navbar.scrolled .company-name {
    font-size: 16px;
}

.navbar.scrolled .nav-link {
    padding: 5px 10px;
}

/* Founder Section Styles */
.founder-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 163, 163, 0.05) 0%, rgba(0, 51, 102, 0.05) 100%);
    z-index: 0;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.founder-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.founder-text {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: transform 0.3s ease;
}

.founder-text:hover {
    transform: translateY(-5px);
}

.founder-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.founder-header h2 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-header h3 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-name {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.founder-name h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.founder-name span {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.founder-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.founder-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.founder-expertise, .founder-achievements {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--primary-color);
}

.founder-expertise h5, .founder-achievements h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.founder-expertise h5 i, .founder-achievements h5 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.founder-expertise ul, .founder-achievements ul {
    list-style: none;
    padding: 0;
}

.founder-expertise ul li, .founder-achievements ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.founder-expertise ul li i, .founder-achievements ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.founder-quote {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    margin: 30px 0;
    text-align: center;
}

.founder-quote i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    opacity: 0.3;
    color: var(--primary-color);
}

.founder-quote i.fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
    color: var(--primary-color);
}

.founder-quote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

.founder-contact {
    margin-top: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.founder-contact h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.founder-contact h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

/* Responsive styles for founder section */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-content {
        flex-direction: column;
    }
    
    .founder-text {
        padding: 30px 20px;
    }
    
    .founder-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founder-header h3 {
        font-size: 28px;
    }
    
    .founder-name h4 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 40px 0;
    }
    
    .founder-text {
        padding: 25px 15px;
    }
    
    .founder-header h3 {
        font-size: 24px;
    }
    
    .founder-quote {
        padding: 20px 15px;
    }
    
    .founder-quote p {
        font-size: 16px;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 15px;
    }
}
