/* =======================
   Global & Base Styling
========================== */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* =======================
   Logo Square
========================== */
/* .logo-square {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: fadeInUp 1s ease-out forwards;
} */

/* .square-row {
  display: flex;
  gap: 2px;
} */

/* .box 
  width: 8px;
  height: 8px;
  background-color: #00cfff;
  transition: transform 0.3s ease;
  animation: zoomIn 0.4s ease-in forwards; */
.fic{
  width: 150px;
height: 100px;
}
.box:hover {
  transform: scale(1.2);
}

/* =======================
   Navbar Styling
========================== */
.navbar-brand h5 {
  font-size: 1.2rem;
  color: #022c43;
}

.brand-text small {
  font-size: 12px;
  color: #666;
}

.navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  margin-left: 50px;
  /* margin-right: 40px; */
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background-color: #00cfff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.navbar-nav .nav-link:hover {
  color: #00cfff;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-nav .nav-link.active {
  color: #00cfff !important;
}

.navbar-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar-text a {
  color: #004d99;
  transition: color 0.3s;
}

.navbar-text a:hover {
  color: #00cfff;
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-text {
    margin-top: 10px;
    display: block;
    text-align: center;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}

/* =======================
   Custom Nav Links
========================== */
.nav-custom li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

.nav-custom li:hover a {
  color: #fff;
  background-color: #00bcd4;
}

.nav-custom .nav-link.active {
  color: #00bcd4;
  font-weight: 600;
}

/* =======================
   Hero Section
========================== */
.hero {
  background: url('images/homepagebackground.jpeg') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
  animation: fadeBg 1.2s ease-out forwards;
}

/* =======================
   Buttons
========================== */
.glowing-btn {
  background: linear-gradient(145deg, #002aff, #00c3ff);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.6);
  transition: all 0.3s ease;
}

.glowing-btn:hover {
  box-shadow: 0 6px 25px rgba(25, 0, 255, 0.9);
  background: linear-gradient(145deg, #0072ff, #00c6ff);
}

/* =======================
   Intro Section
========================== */
/* .intro-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 60px 0;
  animation: slideIn 1s ease-out forwards;
}

.intro-text {
  padding: 30px;
}

.intro-text h2 {
  color: #00cfff;
  font-weight: 700;
  font-size: 2.5rem;
  animation: slideIn 2s ease-out forwards;
}

.intro-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-side-box {
  background-color: #003366;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.intro-side-box h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.reference-btn {
  background-color: white;
  color: #00cfff;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(0, 207, 255, 0.2);
  transition: all 0.3s ease;
}

.reference-btn i {
  margin-right: 8px;
}

.reference-btn:hover {
  background-color: #00cfff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 207, 255, 0.3);
}

@media (max-width: 768px) {
  .intro-side-box {
    padding: 30px 20px;
  }
} */

/* =======================
   Feature Cards
========================== */
.feature-card {
  background-color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* =======================
   About Button
========================== */
.about-btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  color: #fff;
  background-color: #17a2b8;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
  display: inline-block;
  animation: popUp 1.2s ease-out 1.2s both;
}

.about-btn span {
  position: relative;
  z-index: 2;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
  z-index: 1;
}

.about-btn:hover {
  background-color: #0d8aa5;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 195, 255, 0.4);
}

.about-btn:hover::before {
  left: 100%;
}
body {
  background-color: #fff9f8;
  font-family: 'Segoe UI', sans-serif;
}

.services-section {
  padding: 60px 20px;
  text-align: center;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 15px 0;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.service-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
body {
  margin: 0;
  padding: 0;
}

.contact-banner {
  background-color: #003b73;
  color: white;
  padding: 60px 20px;
}

.contact-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}

.contact-btn {
  background-color: white;
  color: #003b73;
  padding: 10px 28px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 221, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #00d4ff;
  color: white;
  box-shadow: 0 0 30px rgba(0, 221, 255, 0.6);
  transform: translateY(-3px);
}

/* Animation base */
.fade-in-left, .fade-in-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
}
body {
  font-family: 'Segoe UI', sans-serif;
}

.footer-section {
  background:#FFFFFF;
  justify-content: end;
}

.footer-link {
  color: #0c0c0c;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: end;

}

.footer-link:hover {
  color: #083a5c;
  text-decoration: underline;
  justify-content: end;

}

#toTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 40px;
  height: 40px;
  background-color: #0dcaf0;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}

#toTopBtn:hover {
  background-color: #0bbcd7;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Parallax effect */
.parallax-section {
  min-height: 100vh;
  background: url('https://i.imgur.com/Xg0NnN5.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for text contrast */
  z-index: -1;
  background: url('images/homepagebackground.jpeg')
}


/* Responsive typography tweaks */
h2 {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

/* =======================
   Back to Top Button
========================== */
.back-to-top {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4);
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
}

.back-to-top:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #009fdc, #005dc4);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  margin-right: 50%;
  margin-top: 20%;
  /* flex-wrap: wrap; */
}

.logo-image {
  max-width: 120px;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #3195c9;
  font-weight: 700;
}

.logo-text h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #3195c9;
  font-weight: 700;
}

.logo-text h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  letter-spacing: 0.25rem;
  font-weight: 600;
  color: #3195c9;
}

@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo-image {
    margin: 0 0 20px 0;
  }
}

/* =======================
   Animations
========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeBg {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center center;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 198, 255, 0.6);
  }
}
/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #3195c9;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: #247aa7;
  transform: translateY(-5px) scale(1.1);
}

/* Smooth scroll behavior for whole page */
html {
  scroll-behavior: smooth;
}
