/* General Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #0a1f44;
    line-height: 1.6;
}

/* Colors */
:root {
    --dark-blue: #0a1f44;
    --light-blue: #1e3a8a;
    --accent-yellow: #facc15;
    --white: #ffffff;
}


.social-bar {
    background-color: rgb(3, 3, 73);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    color: var(--white);
    flex-wrap: wrap;
}

/* Left side */
.left-side .phone-number {
    font-weight: 500;
    font-size: 25px;
    color: var(--white);
    text-decoration: none;
}

/* Right side */
.right-side {
    display: flex;
    align-items: center;
 
    gap: 30px;  /* Increased gap between social media icons and language selector */
}

/* Language Selector */
.custom-language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}



.custom-language-selector img {
    width: 20px;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

/* Social Icons */
.right-side a {
    color: var(--white);
    font-size: 25px;
    text-decoration: none;
    transition: color 0.3s;
}
.custom-language-selector a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}


.right-side a:hover {
    color: var(--accent-yellow);
}



/* Navigation */
nav {
    background-color: #1b4484ee;
}
.nav-container {
    display: flex;
    color: #111;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px; /* Reduce from 20px to 10px or even 0px */
}


.nav-logo img {
    height: 60px; /* slightly bigger */
    width: 60px;  /* make it square */
    object-fit: cover;
    border-radius: 50%; /* makes it fully round */
    border: 2px solid white; /* white border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* optional soft shadow */
}
.nav-logo {
    margin-left: -65px; /* or even 0px if you want it flush to the edge */
}



/* Menu on the Right */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s, border-bottom 0.3s;
}
.nav-menu li a:hover {
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* Header Section with Video */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.top-header {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 20px; /* Reduced padding for a smaller box */
    border-radius: 12px;
    max-width: 600px; /* Reduced width */
    width: 100%;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.488);
    opacity: 0;
    animation: fadeInDelayed 1s ease-in-out forwards;
    animation-delay: 5s;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    top: 30%; /* Move the box further down */
    transform: translateY(-50%); /* Adjust to keep it centered but lower */
}

.header-content {
    text-align: center;
    width: 100%;
}

.header-content h1 {
    font-size: 48px; /* Reduced font size */
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-content p {
    font-size: 20px; /* Reduced font size */
    margin-bottom: 25px;
}

.cta-button {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 12px 28px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-blue);
    color: white;
    border: 2px solid var(--accent-yellow);
}

/* Keyframe for fade-in animation */
@keyframes fadeInDelayed {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
    padding: 60px 20px;
    background-color: var(--white);
    color: var(--dark-blue);
    text-align: center;
}
section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* Services */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-box {
    background: linear-gradient(135deg, #c9e6f8, #8ea1dd,rgb(34, 206, 206));

    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.service-box h3 {
    margin-top: 15px;
    font-size: 22px;
}
.service-box p {
    font-size: 16px;
    margin-top: 10px;
}

/* About Section */
/* About Section */
#about {
    margin-top:50px ;
    background-color: #ebfcff;
    padding: 80px 20px;
    color: #1f2937;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-top: 10px;
    border-radius: 2px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #002f7b;
    font-size: 20px;
    font-weight: 700;
}


.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #facc15; /* bright yellow */
    font-size: 28px;
    font-weight: bold;
}

/* Image Style */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}


#clients {
    background-color: #f3f4f6;
    padding: 60px 20px;
    text-align: center;
    background-color: #56e7d1; /* Optional: makes shadow more visible */
}

#clients h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
   
}



.client-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 10px 0;
  
    animation: slideLoop 50s linear infinite;
}

  
  .client-track img {
    width: 450px;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Soft shadow */
    background-color: #56e7d1; /* Optional: makes shadow more visible */
  }
  
  .client-slider:hover .client-track {
    animation-play-state: paused;
}



.catalog-link {
    text-align: center;
    margin: 20px;
  }
  
  .catalog-link a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .catalog-link a:hover {
    border-color: #007BFF;
    background-color: #f0f8ff;
    transform: scale(1.05);
  }
  
  .catalog-link img {
    width: 80px;
    height: 80px;
  }
  
  .catalog-link p {
    margin-top: 10px;
    font-size: 18px;
  }
  
  /* 📱 Responsive for phones */
  @media (max-width: 600px) {
    .catalog-link a {
      padding: 15px;
    }
  
    .catalog-link img {
      width: 60px;
      height: 60px;
    }
  
    .catalog-link p {
      font-size: 16px;
    }
  }
  
  

/* Smooth scrolling animation */
@keyframes slideLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



:root {
    --dark-blue: #1e3a8a;
    --light-blue: #38bdf8;
    --accent-yellow: #fde047;
}

/* === Layout Container === */
.contact-section {
    padding: 60px 20px;
    background-color: #f3f4f6;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* === LEFT SIDE === */
.contact-info2 {
    flex: 1 1 50%;
    background-color: var(--dark-blue);
    color: #fff;
    padding: 40px 30px;
}

.contact-info2 h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info2 p {
    font-size: 16px;
    margin-bottom: 25px;
}

.location {
    margin-bottom: 30px;
}

.location h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.location p {
    font-size: 14px;
    color: #e0e0e0;
}

.map-container {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-yellow);
}

/* === RIGHT SIDE === */
.contact-form {
    flex: 1 1 50%;
    background-color: #ebf8f6;
    padding: 40px 30px;
   
}

.contact-form h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    text-align: center;
}

.contact-form form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #0045d0;
    border-radius: 6px;
    background-color: #fff;
    color: #111;
    font-size: 15px;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: var(--light-blue);
    outline: none;
    background-color: #f0f9ff;
}

.contact-form form button.send-btn {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    border-color: #111;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form form button.send-btn:hover {
    background-color: #facc15;
    transform: scale(1.03);
}

.site-footer {
    background-color: rgb(3, 3, 73);
    color: white;
    padding: 20px 30px;
    font-size: 14px;
    text-align: center;
}

.center-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content p {
    margin: 5px 0;
}

.powered-by {
    font-size: 14px;
    color: #ffffff;
}

.powered-by .ald {
    color: #ed0000;
    font-weight: bold;
}

.powered-by .design {
    color: #fffefe;
}

/* Add media queries for responsiveness */
/* Top Bar - Refined Responsive Styles */
@media (max-width: 1024px) {
    .social-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 20px;
        row-gap: 10px;
    }

    .left-side .phone-number {
        font-size: 20px;
        text-align: left;
    }

    .right-side {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .right-side a {
        font-size: 15px;
        padding: 6px 10px;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {

    .nav-menu li a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .social-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 10px;
        row-gap: 12px;
    }

    .left-side .phone-number {
        font-size: 18px;
        text-align: center;
    }

    .right-side {
        justify-content: center;
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .right-side a {
        font-size: 14px;
        padding: 6px 12px;
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .right-side a:hover {
        background-color: var(--accent-yellow);
        color: var(--dark-blue);
    }

    .custom-language-selector {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .custom-language-selector a {
        font-size: 13px;
        padding: 4px 10px;
        background-color: rgba(255, 255, 255, 0.08);
    }

    .custom-language-selector a:hover {
        background-color: var(--accent-yellow);
        color: var(--dark-blue);
    }

    .custom-language-selector img {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .left-side .phone-number {
        font-size: 16px;
    }

    .nav-menu li a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .right-side a {
        font-size: 18px;
        padding: 5px 10px;
        border-radius: 16px;
    }

    .custom-language-selector {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .custom-language-selector a {
        font-size: 12px;
        text-align: center;
        padding: 4px 8px;
    }

    .custom-language-selector img {
        width: 16px;
    }
}
