* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Hide scrollbars but keep scroll functionality */
html, body {
  overflow-x: hidden;   /* removes horizontal scrollbar */
  scrollbar-width: none; /* hides scrollbar in Firefox */
}

body::-webkit-scrollbar {
  display: none; /* hides scrollbar in Chrome, Edge, Safari */
}

body {
  background-color: #f9fafc;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003366;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .logo {
  font-size: 1.4rem;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bfff;
}
.logo h1 {
  font-size: 6rem;
  margin: 0;
}

/* Header layout: logo left, nav right */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bfff;
}

/* Align logo image and text in one line with medium logo size */
header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .logo img {
  width: 80px;   /* medium size */
  height: auto;
  border-radius: 50%;
}

header .logo h1 {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.hero {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?fit=crop&w=1500&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 8rem 1rem;
}

.hero h1 {
  font-size: 1.5rem;
  font-style: italic;
}

.hero .cta {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #00bfff;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

section {
  padding: 3rem 2rem;
  text-align: center;
}

#about {
  background: #f9fafc;
  text-align: center;
  padding: 4rem 2rem;
}
#about h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#about p {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
#services {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.services {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 280px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* === Projects Section Modern Box Cards === */
#projects {
  background: #f9fafc;
  padding: 4rem 2rem;
  text-align: center;
}

#projects h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#projects p {
  color: #333;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Grid Layout */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
}

/* Individual Project Card */
.project-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e3e3e3;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-color: #00bfff;
}

/* Project Title */
.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.project-card h3 a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.project-card h3 a:hover {
  color: #00bfff;
}

/* Project Description */
.project-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  #projects {
    padding: 3rem 1rem;
  }

  .project-card {
    padding: 1.2rem;
  }
}
/* === Testimonials Section === */
#testimonials {
  background: #f4f8fc;
  padding: 4rem 2rem;
  text-align: center;
}

#testimonials h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 150px;
}

.no-testimonials {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}

/* For future testimonial cards */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: #003366;
  font-size: 0.9rem;
}

/* === Contact Section === */
#contact {
  background: #fff;
  padding: 4rem 2rem;
}

#contact h2 {
  color: #003366;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

/* Contact Info */
.contact-details p {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #333;
}

/* Map */
.contact-location {
  margin-top: 1.5rem;
}

.contact-location h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 0.8rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Contact Form */
.contact-right h3 {
  color: #003366;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 3px rgba(0, 191, 255, 0.5);
}

.contact-form button {
  background: #003366;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #00bfff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* === Fixed & Polished Contact Form Styling === */
.contact-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-form {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

/* Label styling */
.contact-form label {
  font-weight: 600;
  color: #003366;
}

/* Input & textarea styling */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bfff;
  box-shadow: 0 0 5px rgba(0, 191, 255, 0.4);
}

/* Button styling */
.contact-form button {
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #00bfff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    width: 90%;
    padding: 1.5rem;
  }
}

/* === Contact Heading === */
.contact-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-heading h3 {
  font-size: 1.6rem;
  color: #003366;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Optional: make the icon align perfectly with text */
.contact-heading h3::before {
  content: "📬";
  animation: blinkIcon 1s infinite;
  display: inline-block;
}

/* Keep blinking animation consistent */
@keyframes blinkIcon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
}

.chatbot-header {
  background: #003366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chatbot-body {
  height: 250px;
  padding: 10px;
  overflow-y: auto;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
}

.chatbot-input button {
  background: #003366;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.chat-open-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 55px;
  height: 55px;
  cursor: pointer;
}

.bot-msg, .user-msg {
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  max-width: 80%;
}

.bot-msg {
  background: #e1ecf4;
  text-align: left;
}

.user-msg {
  background: #00bfff;
  color: #fff;
  margin-left: auto;
  text-align: right;
}

footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* === Footer Navigation === */
footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #00bfff;
}

footer p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Blinking Call Icon */
.call-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #00b300;
  color: white;
  border-radius: 50%;
  width: 40px;      /* reduced size */
  height: 40px;     /* reduced size */
  font-size: 1.2rem; /* smaller icon */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  animation: blink 1s infinite;
  z-index: 100;
  cursor: pointer;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* === Responsive Hamburger Menu === */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* === Hamburger Menu Styling === */
.hamburger-menu {
  position: relative;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* Desktop: nav visible inline */
@media (min-width: 769px) {
  #navMenu {
    display: flex;
    gap: 20px;
  }
}

/* Mobile: nav hidden inside hamburger */
@media (max-width: 768px) {
  #navMenu {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 45px;
    right: 0;
    width: 180px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 50;
    overflow: hidden;
  }

  #navMenu a {
    color: #fff;
    padding: 12px;
    text-align: left;
    text-decoration: none;
    display: block;
  }

  #navMenu a:hover {
    background: #00bfff;
  }

  .hamburger {
    display: block;
  }

  #navMenu.active {
    display: flex;
  }
}

/* Center text for project cards */
.project-card {
  text-align: center;
}

.project-card h3,
.project-card p {
  text-align: center;
  margin: 0 auto;
}


/* === Full-section view on click === */
section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;           /* each section fills full viewport */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Enable smooth scroll and snap */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}

/* === Blinking Icon Animation === */
.blinking-icon {
  animation: blinkIcon 1s infinite;
  display: inline-block;
}

@keyframes blinkIcon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

/* === Get in Touch Heading Styling === */
.contact-title {
  text-align: center;
  color: #003366;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Blinking effect for icon */
.blinking-icon {
  animation: blinkIcon 1s infinite;
}

@keyframes blinkIcon {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Adjust form position under heading */
.contact-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}



/* === About Section with Image === */
#about {
  background: #f9fafc;
  padding: 4rem 2rem;
  text-align: center;
}

#about h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  text-align: left;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  max-width: 600px;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive layout */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }
}

/* 🌐 Language Selector Styling */
.language-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 6px;
}

.language-box label {
  color: white;
  font-weight: bold;
}

#language-selector {
  background-color: white;
  color: #0b63ce;
  border: 1px solid #0b63ce;
  border-radius: 5px;
  padding: 6px 8px;
  font-weight: 600;
  cursor: pointer;
}

#language-selector:hover {
  background-color: #e7f0ff;
}


/* Chatbot Styles */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#chatbot-icon {
  background: #0b63ce;
  color: white;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#chat-window {
  background: white;
  border: 1px solid #ccc;
  width: 320px;
  height: 460px;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#chat-header {
  background: #0b63ce;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#chat-close {
  cursor: pointer;
  font-size: 20px;
}

#chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 15px;
}

#chat-controls {
  display: flex;
  align-items: center;
  border-top: 1px solid #ccc;
}

#chat-input {
  border: none;
  flex: 1;
  padding: 10px;
  outline: none;
}

#mic-btn {
  background: #0b63ce;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0 0 10px 0;
}

.user-msg {
  background: #e5f1ff;
  align-self: flex-end;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 5px 0;
  max-width: 80%;
}

.bot-msg {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 5px 0;
  max-width: 80%;
}

.hidden {
  display: none;
}


/* 🧠 Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  height: 400px;
  background: #ffffff;
  border: 2px solid #0b63ce;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chatbot-header {
  background: #0b63ce;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 0.95rem;
}

.bot-msg, .user-msg {
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
  word-wrap: break-word;
}

.bot-msg {
  background-color: #e5f0ff;
  color: #0b63ce;
  align-self: flex-start;
}

.user-msg {
  background-color: #0b63ce;
  color: white;
  align-self: flex-end;
}

.chatbot-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.chatbot-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.chatbot-input button {
  margin-left: 5px;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#sendMsg {
  background-color: #0b63ce;
  color: #fff;
}

#micBtn {
  background-color: #f1f1f1;
}

.chat-open-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #0b63ce;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  z-index: 999;
}

.chat-open-btn:hover {
  transform: scale(1.1);
}


/* 💬 Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 430px;
  background: #ffffff;
  border: 2px solid #0b63ce;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chatbot-header {
  background: #0b63ce;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.bot-msg, .user-msg {
  margin: 6px 0;
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
  word-wrap: break-word;
}

.bot-msg {
  background-color: #e7f0ff;
  color: #0b63ce;
  align-self: flex-start;
}

.user-msg {
  background-color: #0b63ce;
  color: white;
  align-self: flex-end;
}

.chatbot-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
  background: #fafafa;
}

.chatbot-input input {
  flex: 1;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.chatbot-input button {
  margin-left: 5px;
  border: none;
  border-radius: 5px;
  padding: 8px 10px;
  cursor: pointer;
}

#sendBtn {
  background-color: #0b63ce;
  color: white;
}

#micBtn {
  background-color: #f1f1f1;
}

.close-btn {
  background: none;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.chat-open-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #0b63ce;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  z-index: 999;
}

.chat-open-btn:hover {
  transform: scale(1.1);
}


#privacy-policy, #refund-policy, #terms {
  padding: 60px 10%;
  background-color: #f8f9fa;
  color: #333;
}

#privacy-policy h2, #refund-policy h2, #terms h2 {
  color: #0b63ce;
  margin-bottom: 15px;
  font-size: 1.8rem;
  border-bottom: 2px solid #0b63ce;
  display: inline-block;
  padding-bottom: 5px;
}

#privacy-policy p, #refund-policy p, #terms p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* End of CSS */    