﻿/* Base responsive styles */
:root {
  --header-height: 120px;
  --header-height-mobile: 80px;
}

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

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fdfdfd;
  padding-top: 0;
}

header {
  background: #ffffff;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .logo img {
  height: .01%;
  width: auto;
  display: block;
  margin-top: 0px;
} 

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

/* Header styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #ffffff;
  /* padding: 10px 20px; */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  /* width: 100%; */
}
.navbar .logo {
  font-weight: bold;
  font-size: 1.25rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-top: 0px;
  margin-left: 400px;
}
.nav-links li {
  margin-left: 1.5rem;
}
.nav-links a {
  color: #010510;
  text-decoration: none;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  width: 300px;
  height: auto;
  margin-top: -20px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.contact-info {
  /* background: #ecf0f3; */
  color: rgb(255, 255, 255);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  /* margin-left: auto; */
  text-align: right;
  width: 200%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: right;
}

.contact-info .phone-icon,
.contact-info .email-icon {
  height: 16px;
  width: auto;
  margin-right: 1rem;
  mix-blend-mode: difference;
}

.phone-icon,
.email-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;  /* Ensures icons align with text */
}

.contact-info .separator {
  margin: 0 15px;
  mix-blend-mode: difference;
}

.contact-info > div {
  display: flex;
  align-items: center;
  gap: 5px;  /* Adds consistent spacing between elements */
  justify-content: flex-end;
} 

.navbar {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-top: 0px;
  margin-left: 26em;
}

@import url('../../static/css/all.min-1.css');

.social-links {
  display: flex;
  gap: 10px;
}

/* .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;*/
  /* background-color: #f8f9fa; }*/


.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Base styles for nav-toggle */
.nav-toggle {
  display: none; /* Hidden by default on desktop */
}

  /* Large screen breakpoint */

@media screen and (max-width: 1300px) and (min-width: 1200px) {
  .nav-links {
    margin-left: 17.5em;
  }

  .logo img {
  width: 250px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .nav-toggle {
      display: block;
      cursor: pointer;
      font-size: 24px;
      position: absolute;
      right: 20px;
      top: 4.5em;
      transform: translateY(-50%);
      z-index: 1001;
      background: none;
      border: none;
      padding: 10px;
      color: black;
      /* mix-blend-mode: difference; */
  }

  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
  }

  .nav-links.open {
      display: flex !important;
  }
  /* Header adjustments */
  .top-bar {
    padding: 10px 20px;
  }

  .company-logo {
    max-width: 140px; /* Slightly smaller logo */
  }

  .contact-info {
    font-size: 14px;
  }

  /* Navigation adjustments */
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    gap: 15px; /* Reduce space between nav items */
  }

  .nav-links a {
    font-size: 15px;
    padding: 8px 12px;
  }

    /* Social links adjustments */
    .social-links {
      gap: 8px;
    }
  
    .social-btn {
      width: 30px;
      height: 30px;
    }
  
    .social-btn i {
      font-size: 14px;
    }
}

/* Media query for tablets and mobile */
@media screen and (max-width: 992px) and (min-width: 769px) {
  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 4.5em;
    transform: translateY(-50%);
    z-index: 1001;
    background: none;
    border: none;
    padding: 0px;
    mix-blend-mode: difference;
    top: 2em;
  }
  
  .contact-info {
    visibility: hidden;
  }

  .navbar {
    position: relative;
  }

  .logo img {
    width: 230px;
    margin-left: -7px;
    margin-top: -38px;
  }

  .nav-links {
    display: none;
    width: 50%;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 1000;
    left: 5em;
  }

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

  .nav-links li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 10px 20px;
    display: block;
  }

  /* Adjust social links position */
  .social-links {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn.home {
  background: #003366;
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.twitter {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn.twitter i {
  font-size: 14px;  /* Slightly smaller size for X logo */
  font-weight: bold;  /* Make the X more visible */
  /* make the X logo transparent */
  /* mix-blend-mode: difference; */
}

.social-btn.twitter:hover {
  background: #333333;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn.feedback {
  background: #0056b3;
}

.social-btn i {
  font-size: 16px;
}

/* Home icon */
.social-btn:first-child {
  background: #003366;
} 



.logo {
margin-left: 10px;
height: 0;
}


.x-logo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 1;
  text-align: center;
}

/* Add these styles in the <style> section */
.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus,
.nav-links .active {
  color: red !important;
  text-decoration: none;
}

/* Also style the social links */
.social-links a:hover,
.social-links a:active,
.social-links a:focus,
.social-links .active {
  color: red !important;
}

/* For currently active page */
.nav-links a.active {
  color: red;
}

@import url('../../static/css/all.min-1.css');

@media (max-width: 768px) and (min-width: 480px) {
  :root {
    --header-height: var(--header-height-mobile);
  }

  .contact-info {
    visibility: hidden;
  }

  .logo img{
    font-size: 10px;
    margin-left: 20px;
    width: 220px;
    margin-top: 0px;
    transform: translateX(-65%);
  }
  
  .top-bar {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;

  }




  .nav-toggle {
    margin-left: 10px;
  }
  .contact-info {
    visibility: hidden;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 200px;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: 0.3s ease;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: black;
  }

  .nav-links {
    list-style : none;
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 400px;
    display: none;
  } 

  .nav-links.open {
    display: flex !important;
 }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0px;
    background: white;
    left: -443px;
    top: 151px;
}
  }
  
  @import url('../../static/css/all.min-1.css');
  
  .social-links {
    display: flex;
    gap: 10px;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  .social-links {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  .social-btn.home {
    background: #ffffff;
  }
  
  .social-btn.linkedin {
    background: #0077b5;
  }
  
  .social-btn.twitter {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-btn.twitter i {
    font-size: 14px;  /* Slightly smaller size for X logo */
    font-weight: bold;  /* Make the X more visible */
    /* make the X logo transparent */
    /* mix-blend-mode: difference; */
  }
  
  .social-btn.twitter:hover {
    background: #333333;
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
  
  .social-btn.youtube {
    background: #ff0000;
  }
  
  .social-btn.feedback {
    background: #0056b3;
  }
  
  .social-btn i {
    font-size: 16px;
  }
  
  /* Home icon */
  .social-btn:first-child {
    background: #003366;
  } 
  
  
  
  .logo {
  margin-left: 10px;
  height: 0;
  }
  
  
  .x-logo {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1;
    text-align: center;
  }
  
  /* Add these styles in the <style> section */
  .nav-links a:hover,
  .nav-links a:active,
  .nav-links a:focus,
  .nav-links .active {
    color: red !important;
    text-decoration: none;
  }
  
  /* Also style the social links */
  .social-links a:hover,
  .social-links a:active,
  .social-links a:focus,
  .social-links .active {
    color: red !important;
  }
  
  /* For currently active page */
  .nav-links a.active {
    color: red;
  } 

@media (max-width: 480px) {
  :root {
    --header-height: var(--header-height-mobile);
  }
  .logo img {
    width: 230px;
    margin-left: -7px;
    margin-top: -38px;
  }

  .nav-toggle {
    margin-left: 10px;
  }
  .contact-info {
    visibility: hidden;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 200px;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: 0.3s ease;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: black;
  }

  .nav-links {
    list-style : none;
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 400px;
  } 

  .nav-links.open {
    display: flex !important;
 }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 5px;
    background: white;
    top: 13.3em;
    left: -27em;
  }
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}
  /* Footer Styles */
  footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    width: 100%;
    text-align: center;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
  }

  .footer-section {
    flex: 0 1 auto;
    min-width: 300px;
    padding: 0 20px;
    text-align: left;
  }

  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-section p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555;
  }

