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

header {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); /* Dark gradient */
  color: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

/* Logo styling */
.logo-background {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px;
  height: auto;
  background-color: #f5f5f5;
}

/* Title styling */
.title-header {
  flex: 1;
  text-align: center;
}

.title1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f5f5f5;
}

/* Navigation styling */
.navbar-nav {
  display: flex;
  gap: 15px;
  list-style: none;
}

.navbar-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.navbar-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title-header {
    margin: 10px 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .title1 {
    font-size: 1.4rem;
  }

  .logo {
    width: 80px;
  }
}

footer {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);/* Matches header theme */
  color: #f0f0f0;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

footer a {
  color: #00d4ff; /* Light blue for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #66f0ff;
}

#terms-privacy {
  margin-bottom: 8px;
  color: #f5f5f5;
}

#copyright {
  color: #f5f5f5;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Optional spacing div before footer */
.gap {
  height: 40px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  footer {
    font-size: 0.85rem;
  }

  #terms-privacy {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

/* About Us Section */
.AboutUs {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.AboutUs h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #203a43;
  position: relative;
}

.AboutUs h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00d4ff;
  margin: 10px auto 0;
  border-radius: 5px;
}

.AboutUs p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Ethics Section */
.Ethics {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.Ethics h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  color: #203a43;
}

.List ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.List li {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.List li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.List h4 {
  font-size: 1.3rem;
  color: #0f2027;
  margin-bottom: 12px;
}

/* Principle Card Layout */
.Principle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.Principle img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.Principle p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .AboutUs {
    padding: 15px;
  }
  .AboutUs p {
    font-size: 1rem;
  }
  .List ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .AboutUs h2 {
    font-size: 1.6rem;
  }
  .Ethics h3 {
    font-size: 1.3rem;
  }
  .List h4 {
    font-size: 1.1rem;
  }
}

/* General Description Styling */
.description {
  max-width: 1100px;
  margin: 50px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  text-align: center;
  padding: 0 20px;
}

/* Service Sections */
.Service {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* Section Titles */
.Service h2 {
  font-size: 1.8rem;
  color: #203a43;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.Service h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00d4ff;
  margin: 10px auto 0;
  border-radius: 5px;
}

.img-container {
  display: flex;
  justify-content: center;
}

/* Images */
.Service img {
  width: 500px;
  max-height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Paragraphs */
.Service p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Software Solutions Subsections */
.Slns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.Slns div {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Slns div:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.Slns h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f2027;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Service img {
    max-height: 250px;
  }

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

@media (max-width: 480px) {
  .Service h2 {
    font-size: 1.5rem;
  }

  .Slns h4 {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }
}

/* Section Title */
h2 {
  font-size: 2rem;
  color: #203a43;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff0000; /* YouTube red accent */
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Section Paragraph */
p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #444;
  padding: 0 20px;
}

/* YouTube Link */
.YouTube-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.YouTube-Link img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.YouTube-Link a {
  font-size: 1.1rem;
  color: #ff0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.YouTube-Link a:hover {
  color: #cc0000;
}

/* Videos Section */
.Videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.Videos div {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Videos div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.Videos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.Videos a {
  text-decoration: none;
  color: #203a43;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.Videos a:hover {
  color: #00d4ff;
}

.Videos p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .Videos {
    flex-direction: column;
    align-items: center;
  }

  .Videos div {
    width: 90%;
  }
}

/* Contact List */
.contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 50px auto;
  max-width: 1000px;
}

/* Individual Contact Item */
.contact-list .item {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  width: 220px;
  padding-top: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-list .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Contact Heading */
.c-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #203a43;
  margin-bottom: 10px;
}

/* Icons */
.item img {
  display: block;
  margin: 0 auto 10px;
  width: 50px;
  height: auto;
}

/* Description */
.description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Social Media Links */
.sm-anchors {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.sm-anchors a img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sm-anchors a:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}

/* End Item Alignment */
.cend {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-list .item {
    width: 90%;
  }
}

/* Container */
.Terms {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

/* Headings */
.Terms h2 {
  font-size: 2em;
  color: #1a1a1a;
  margin-bottom: 20px;
  border-bottom: 2px solid #00b894;
  padding-bottom: 10px;
}

.Terms h3 {
  font-size: 1.5em;
  color: #00b894;
  margin-top: 30px;
  margin-bottom: 15px;
}

.Terms h2 strong,
.Terms h3 strong {
  font-weight: 700;
}

/* Paragraphs */
.Terms p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

/* Links */
.Terms a {
  color: #0984e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.Terms a:hover {
  color: #00b894;
  text-decoration: underline;
}

/* Lists */
.Terms ul {
  margin: 15px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #555;
}

.Terms li {
  margin-bottom: 10px;
}

/* Nested lists (if any) */
.Terms ul ul {
  list-style-type: circle;
  margin-left: 20px;
}

/* Strong/emphasis in text */
.Terms strong {
  color: #1a1a1a;
}

/* Optional styling for highlighted sections */
.Terms blockquote {
  border-left: 4px solid #00b894;
  padding-left: 15px;
  margin: 20px 0;
  color: #666;
  font-style: italic;
  background-color: #f0fdf4;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .Terms {
    padding: 20px;
    margin: 20px;
  }

  .Terms h2 {
    font-size: 1.6em;
  }

  .Terms h3 {
    font-size: 1.3em;
  }

  .Terms p,
  .Terms li {
    font-size: 0.95rem;
  }
}

/* Container */
.Privacy {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

/* Main heading */
.Privacy h2 {
  font-size: 2em;
  color: #1a1a1a;
  margin-bottom: 20px;
  border-bottom: 2px solid #00b894;
  padding-bottom: 10px;
}

/* Subheadings */
.Privacy h3 {
  font-size: 1.5em;
  color: #00b894;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Paragraphs */
.Privacy p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

/* Links */
.Privacy a {
  color: #0984e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.Privacy a:hover {
  color: #00b894;
  text-decoration: underline;
}

/* Lists */
.Privacy ul {
  margin: 15px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #555;
}

.Privacy li {
  margin-bottom: 10px;
}

/* Nested lists */
.Privacy ul ul {
  list-style-type: circle;
  margin-left: 20px;
}

/* Strong/emphasis */
.Privacy strong {
  color: #1a1a1a;
}

/* Optional blockquote style */
.Privacy blockquote {
  border-left: 4px solid #00b894;
  padding-left: 15px;
  margin: 20px 0;
  color: #666;
  font-style: italic;
  background-color: #f0fdf4;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .Privacy {
    padding: 20px;
    margin: 20px;
  }

  .Privacy h2 {
    font-size: 1.6em;
  }

  .Privacy h3 {
    font-size: 1.3em;
  }

  .Privacy p,
  .Privacy li {
    font-size: 0.95rem;
  }
}


