/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #333;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a3d; /* Blue color */
    display: flex;
    justify-content: flex-end;
    padding: 10px 50px;
    color: white;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Header Main Section */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #ffffff; /* White background */
}

.logo img {
    width:110px; /* Adjust logo size to make it bigger */
}


/* Style for the navigation */
nav ul {
    list-style: none; /* Remove bullets */
    display: flex; /* Horizontal menu */
    gap: 20px; /* Space between menu items */
    position: relative; /* Needed for submenu positioning */
}

nav ul li {
    position: relative; /* For submenu positioning */
}

nav ul a {
    text-decoration: none;
    color: #333; /* Default text color */
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
}

/* Submenu styles */
.submenu {
    display: none; /* Hide submenu by default */
    position: absolute; /* Position relative to parent */
    top: 100%; /* Position below the parent menu */
    left: 0;
    background: white;
    list-style: none;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
    z-index: 10;
}

.submenu li {
    margin: 5px 0; /* Space between submenu items */
}

.submenu a {
    color: #007bff; /* Submenu link color */
    padding: 5px 15px;
    display: block; /* Full-width clickable area */
}

/* Show the submenu on hover */
nav ul li:hover .submenu {
    display: block; /* Show submenu on hover */
}

/* Hover effect for submenu links */
.submenu a:hover {
    background-color: #f1f1f1; /* Light background on hover */
}


nav a {
    text-decoration: none;
    color: #000; /* Black text */
    transition: transform 0.3s ease-in-out;
}

nav a:hover {
    color: #007bff; /* Blue hover color */
    text-decoration: underline; /* Add underline on hover */
    transform: scale(1.1);
}


/* Hero Section with Parallax Effect */
.hero {
    position: relative;
    height: 70vh; /* Full viewport height */
    overflow: hidden; /* Prevent overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Video Container for Parallax */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%; /* Larger height for parallax effect */
    z-index: -1;
    will-change: transform; /* Optimize for parallax animation */
}

/* Video */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Overlay Content */
.hero-overlay {
    background: rgba(255, 255, 255, 0.95); /* White semi-transparent overlay */
    padding: 40px 60px;
    text-align: center;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: fadeIn 1s ease-in-out; /* Add the fade-in animation */
}

/* Title and Paragraph Styling */
.hero-overlay h1 {
    font-size: 3rem;
    color: #1a1a3d; /* Dark blue */
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: #1a1a3d; /* Dark blue button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #007bff;
    transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/* Info Section */
/* Split Section */
.split-section {
    display: flex;
    height: 40vh; /* Full viewport height */
}

/* Left Side */
.split-left {
    flex: 1;
    background-color: #1a1a3d; /* Dark Blue Background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* White Text */
    padding: 40px;
    text-align: center;
}

.split-left h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Blue Vertical Line */
.blue-line {
    width: 60px;
    height: 2px;
    background-color: #007bff; /* Blue line under heading */
    margin: 20px auto;
}

/* Right Side */
.split-right {
    flex: 2;
    background-color: #f8f9fa; /* Light Gray/White Background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    color: #333;
}

.split-right h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a3d; /* Dark Blue */
}

.split-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-left, .split-right {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .blue-line {
        margin: 10px auto;
    }
}

/* Services Section */
/* Digital Solution Section */
.digital-solution {
    position: relative;
    height: 60vh; /* Full height of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a1a3d; /* Dark Text */
    overflow: hidden; /* Ensures the video doesn't spill outside the section */
}

/* Background Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the section fully */
    z-index: -2;
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* White transparent overlay */
    z-index: -1;
}

/* Content Styling */
.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 20px;
}

.content h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a1a3d; /* Dark Blue */
}

.content .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #333;
}

/* Services Container */
.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Service Box */
.service {
    text-align: center;
    max-width: 300px;
    color: #1a1a3d; /* Dark Blue */
}

.service img {
    width: 80px; /* Circle images */
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555; /* Slightly dark text */
}

/* Partners Section */
.partners-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.partner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}
/* Partners Text */
.partners-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partners-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a3d; /* White text */
}

.vertical-line {
    width: 2px;
    height: 100px;
    background-color: #ffffff55; /* Light white transparent line */
}

/* Logo and Company Name */
.partner-logo {
    text-align: center;
}

.partner-logo img {
    width: 100px; /* Adjust logo size */
    height: auto;
}

.partner-logo .company-name {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Divider */
.divider {
    width: 2px;
    height: 150px;
    background-color: #ffffff55; /* Light white transparent */
}

/* Partner Logos */
.partners-logos {
    display: flex;
    gap: 20px;
}

.partner-card {
    width: 120px;
    height: 120px;
    background-color: #ffffff; /* Dark background for partner logos */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.partner-card img {
    max-width: 80%; /* Resize the image */
    max-height: 80%;
    object-fit: contain; /* Maintain aspect ratio */
}

.partner-card:hover {
    transform: scale(1.1); /* Hover scaling effect */
}


/* Footer */
/* Footer Container */
.footer {
    background-color: #f4f4f4;
    padding: 30px 50px;
    color: #000;
    font-size: 14px;
  }
  
  /* Footer Container */
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  /* Footer Logo */
  .footer-logo {
    text-align: center;
    flex: 1; /* Ensures it occupies equal space between other sections */
  }
  
  .footer-logo img {
    max-width: 700px; /* Adjust logo size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    gap: 50px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  /* Headquarters Section */
  .footer-info {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-info p {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .linkedin-icon img {
    width: 30px;
    height: 30px;
  }
  
  /* Footer Copyright */
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
  }
  
  
  .footer-links {
    border-left: 1px solid #ddd;
    padding-left: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-links {
      flex-direction: column;
      text-align: center;
      gap: 10px;
      border-left: none;
      padding: 0;
    }
  
    .footer-info {
      text-align: center;
    }
  }

