.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #000;
}

/* Dropdown container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;

  height: 0;
  transition: height 0.35s ease;
  z-index: 999;
}

.dropdown-menu li a {
  padding: 12px 15px;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f4f4f4;
}

/* Arrow animation */
.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}





/*gpt code*/

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 20px 10px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn.primary {
  background: #2563eb;
  color: white;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 15px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  padding: 45px;
  border-radius: 8px;
  background: #f8fafc;
}

/* WHY US */
.why-us {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.why-icon {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* CTA */
.cta {
  background: #1e3a8a;
  color: white;
  padding: 50px 20px;
  text-align: center;
}
/*gpt code end*/


main {
  padding: 0rem 0rem 0rem;
}

/* Navbar */
.navbars {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 12px 16px;
  position: relative;
}

/* Links desktop */
.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* 🔹 Mobile Styles */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Slide menu */
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #0f172a;
    padding-top: 80px;
    gap: 10px;
    transition: right 0.35s ease;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 18px;
    padding: 16px;
  }

  /* Open menu */
  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  /* Animate hamburger → X */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* CTA */
.cta {
  background: #1e3a8a;
  color: white;
  padding: 50px;
  text-align: center;
}
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Show overlay when menu is open */
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Make sure menu is above overlay */
.nav-links {
  z-index: 1001;
}

.overlay {
  backdrop-filter: blur(3px);
}

@media (max-width: 768px) {

  .nav-links li {
    opacity: 0;
    transform: translateX(30px);
   transition: opacity 0.2s ease, transform 0.3s cubic-bezier(.4,0,.2,1);
  }

  /* When menu opens */
  #menu-toggle:checked ~ .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {

  #menu-toggle:checked ~ .nav-links li:nth-child(1) { transition-delay: 0.05s; }
  #menu-toggle:checked ~ .nav-links li:nth-child(2) { transition-delay: 0.10s; }
  #menu-toggle:checked ~ .nav-links li:nth-child(3) { transition-delay: 0.15s; }
  #menu-toggle:checked ~ .nav-links li:nth-child(4) { transition-delay: 0.20s; }
  #menu-toggle:checked ~ .nav-links li:nth-child(5) { transition-delay: 0.25s; }
  #menu-toggle:checked ~ .nav-links li:nth-child(6) { transition-delay: 0.30s; }
}

.site-footer {
  background: #0b1c2d;
  color: #d1d5db;
  padding: 60px 20px 20px;
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-links h4,
.footer-social h4 {
  color: #ffffff;
  margin-bottom: 15px;
  margin-left:40px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 8px;
  margin-left:40px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #132b45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.social-icons img {
  width: 18px;
}

.social-icons a:hover {
  background: #0056d2;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}


.footer {
  background: #0f172a; /* dark blue/black */
  color: #cbd5e1;
  padding: 2.5rem 1rem;
  font-family: system-ui, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 45px;
  width: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Copyright */
.footer-copy {
  font-size: 0.85rem;
  text-align: center;
  flex: 1;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #1e293b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-socials a:hover {
  background: #38bdf8;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

:root {
  --tbc-primary: #0b5ed7;   /* main blue */
  --tbc-primary-dark: #084298;
  --tbc-shadow: rgba(11, 94, 215, 0.35);
}

#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--tbc-primary);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px var(--tbc-shadow);
  transition: background 0.3s ease,
              transform 0.25s ease,
              box-shadow 0.3s ease;
}

#backToTop:hover {
  background: var(--tbc-primary-dark);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px var(--tbc-shadow);
}

#backToTop:active {
  transform: scale(0.92);
}

/* Mobile */
@media (max-width: 600px) {
  #backToTop {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
}


/*Generic style sheet to be applied to all pages*/
body {
  background-color:;
  background-image:;
  margin: 0;
  padding: 0;
  margin-top:0px;
}

.header_container{
	display:flex;
	justify-content:space-evenly; 
	align-items:center; 
	flex-wrap:wrap;
	flex-grow: 1;
	flex: 1 1 100px;
	background-color:green; 
	width: 100%; 
	margin:auto;
	margin-top:0px;
	margin-bottom:0px;
    /*top: 0;*/
	}

.logo_properties{
    height:50px; 
	width:auto;
	border-radius:10px;
}

.navbar {
    display: flex;
	flex-wrap:wrap;
    justify-content:space-between;
	align-items:center;
    padding: 10px;
}

.navbar div {
    margin: 5px;
    padding: 10px;
	color:white;
}

.navbar a {
	text-decoration:none;
}

.social_media_properties{
	height:20px; 
	width:20px; 
    margin:10px;
	padding-top:1.5px;
}

.main_head_banner{
  width:80%;
  margin:auto;
}

/*
.main_grid_container{
	display: grid;
    grid-template-columns: auto auto auto;  Creates three columns
    grid-template-rows: auto; /* Creates one row, height determined by content
    gap: 10px; /* Space between grid items
	width:80%;
	margin:auto;
	border:2px solid green;
	padding:5px;
}
*/

.footer_social_media_container
{
	display:flex; 
	gap:10px;
	}
	
.footer_social_media_text_properties{
	 padding-top:8px;
	 color:navy !important;
}	

.footer_navbar {
    display: inline;
    justify-content:space-evenly;
	align-items:center;
    padding: 10px;
}

.footer_navbar_last{
	display: flex;
    justify-content:end; 
	gap:10px;
	align-items:center;
}
	
.footer_social_media_container_last img
{
	 width:20px; 
	 height:20px;
}
.footer_navbar div {
    margin: 5px;
    padding: 10px;
	color:white;
}

hr{
	 width:80%; 
	 margin:auto;
	 margin-top:5px;
	 height: 0;
    border: 0;
    border-top: 1px solid lightgrey;
}

.final_footer_container{
	background: linear-gradient(135deg, #0f172a, #1e3a8a);
	color: white;
	display:flex;
	justify-content:space-around;
	align-items:center;
	width:100%;
	margin:auto;
}

.final_footer_items{
	width:auto; 
}
.footer_span{
	 font-weight:bolder;
}

/*Adjusting Column Layout for Tablet*/
@media screen and (max-width: 600px) {

.main_head_banner{
  width:100%;
  margin:auto;
}	

.navbar {
    flex-direction: column; /* Stack nav items vertically on smaller screens*/
	}

.social_container{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	}

.header_container{
	flex-direction: column;
	padding:0px;
	}
	
.main_head_banner{
	padding:0px;
}

.footer_social_media_text_properties{
	visibility:display;
	 padding-top:8px;
	 color:navy !important;
}

footer
{
	padding:0px;
}

.final_footer_container{
	display:block;
	padding-top:5px;
}

.footer_navbar_last{
	display: flex;
    justify-content:center; /* Distribute space between nav items*/
	align-items:center;
}

.powered_by_props
{
 text-align:center;
}
.dropdown-menu {
	display:none;
}
/*Adjusting Column Layout for Mobile*/
@media screen and (max-width: 480px) {


}
.navbar {
    flex-direction: column;
	}

.social_container{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	margin:auto;
	background-color:black;
	}

.header_container{
	flex-direction: column;
	padding:0px;
	}
	
.main_head_banner{
	padding:0px;
}

.footer_social_media_text_properties{
	visibility:display;
	 padding-top:8px;
	 color:navy !important;
}

footer
{
	padding:0px;
}

.final_footer_container{
	display:block;
}

.footer_navbar_last{
	display: flex;
    justify-content:center;
	align-items:center;
}

.powered_by_props
{
 text-align:center;
}

}


