/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #e0f0ff;
  background: linear-gradient(135deg, #2e003e, #001f3f, #002d5c);
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}

/* Header */
/* .header {
  background: rgba(8, 8, 8, 0.7) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
} */

/* Navbar */
/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  background: #111; /* Optional *
  padding: 10px 20px;
} */

/* Main Menu */
/* .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.main-menu > li {
  position: relative;
  margin-right: 20px;
} */

/* Dropdown Style */
/* .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(8, 8, 8, 0.95);
  border-radius: 6px;
  padding: 0.5rem 0;
  display: none;
  min-width: 180px;
  z-index: 999;
}

.dropdown:hover > .dropdown-menu {
  display: block;
} */

/* Dropdown Items */
/* .dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #00bfff;
}
 */
/* Submenu */
/* .dropdown-submenu > a::after {
  content: "▶";
  float: right;
  margin-left: 10px;
  font-size: 12px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
} */

/* Positioning Submenu to Right */
/* .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
  border-radius: 6px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #4861db;
}

.logo img {
  width: 270px;
  height: auto;
  border-radius: 0;             / No rounding /
  box-shadow: none;             /* Remove shadow /
  padding: 0;                   /* Remove padding /
  background-color: transparent; /* Transparent background to blend with navbar /
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00bfff;
} */

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to bottom right, #1b003e, #00203f);
  color: #e0f0ff;
}

.hero-section {
  text-align: center;
  padding: 5rem 2rem;
  background: 
    linear-gradient(to bottom right, rgba(27, 0, 62, 0.85), rgba(0, 32, 63, 0.85)),
    url('background.jpg') center/cover no-repeat;
  color: #e0f0ff;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  margin: 0 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: white;
}

.btn.primary {
  background: linear-gradient(45deg, #4e00c2, #0073ff);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
}

.btn.primary:hover,
.btn.secondary:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section p {
  color: #d4e6f4;
  text-align: center;
  margin-bottom: 2rem;
}

.underline {
  width: 60px;
  height: 4px;
  background: #00bfff;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Services */


h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 10px;
  text-decoration-color: #d4e6f4;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.flip-card {
  background-color: trlinear-gradient (135deg, #1e1e2f, #0f172a, #0a192f);
  width: 300px;
  height: 360px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid #00bfff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #1e1e2f, #0f172a, #0a192f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-card-front img {
  width: 80px;
  margin-bottom: 20px;
}

.flip-card-front h3 {
  margin: 10px 0;
  font-size: 20px;
}

.flip-card-front p {
  font-size: 14px;
  color: #444;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #f0f8ff;
}

.flip-card-back h4 {
  margin-bottom: 10px;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

.flip-card-back li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Portfolio */
#portfolio ul {
  list-style-type: none;
  text-align: center;
  padding-left: 0;
}

#portfolio li {
  margin-bottom: 0.5rem;
  color: #c3e4ff;
}

/* Testimonials Section Styles */
.testimonials-section {
 
  padding: 80px 20px;
  position: relative;
  color: white;
}

.testimonials-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px 30px;
  border-radius: 12px;
}

.testimonials-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-box {
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-style: italic;
}

.testimonial-box h4 {
  margin-top: 20px;
  font-weight: 600;
  font-style: normal;
}


/* Dark Gradient Why Choose Section Styling */
.why-choose-section {
  background: linear-gradient(135deg, #1e1e2f, #0f172a, #0a192f);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.why-choose-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
}


.btn.primary {
  background-color: #00bcd4;
  color: #fff;
  padding: 14px 36px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn.primary:hover {
  background-color: #008c9e;
  transform: scale(1.05);
}



/* Contact */
.contact-section {
  background: rgba(255, 255, 255, 0.03);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-top: 2rem;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-circle {
  background: #00bfff;
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 8px;
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cccccc;
}

.contact-form button {
  padding: 0.75rem 2rem;
  background: linear-gradient(45deg, #4e00c2, #0073ff);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.85;
}
.footer {
  background: #000;
  color: #dbeafe;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.2rem;
  border-bottom: 2px solid #00bfff;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #c8e4ff;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00bfff;
}

.footer-logo-img {
  width: 270px;
  height: auto;
  border-radius: 0;
  margin-bottom: 10px;
  background: #000;
}

.footer-brand {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
}

.footer-tagline {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #9fbad2;
}

.footer-location p {
  margin: 2px 0;
  font-size: 0.9rem;
}

.footer-email {
  margin-top: 10px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  justify-content: center;
}

.footer-socials a {
  color: #c8e4ff;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: #00bfff;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9fbad2;
}

