* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html, body {
  overflow-x: hidden; 
  width: 100%;
  position: relative;
}
/* navbar start */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;      
  padding: 0 10%; 
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  position: relative; 
  z-index: 1000;
}

.logo {
  position: relative;
  width: 200px;    
  height: 100%;      
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-text img {
  height: 120px;    
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  display: block;
  z-index: 1001;     
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #1c73a2; 
}

.search-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.divider {
  color: #ccc;
  font-size: 20px;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp {
  background-color: #25D366; 
}

.phone {
  background-color: #1c73a2;
}

.contact-icon:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 480px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media screen and (max-width: 992px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .navbar { 
    padding: 15px 5%; 
  }
  
  .hamburger { 
    display: flex; 
    order: 3; 
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none; 
    border-top: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }

  .logo-text img {
    height: 80px;    
  }

  .nav-links ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle:checked ~ .hamburger span {
    background-color: #1c73a2;
  }

  .menu-toggle:checked ~ .nav-links {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .logo-text img {
    height: 100px;   
    position: static;
    transform: none;
  }
  
  .navbar {
    height: 60px;   
  }
}

/* navbar end */


/* Contact-Banner start */

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Montserrat', sans-serif;
}

.about-hero-banner {
  height: 80vh;              
  width: 100%;
  position: relative;
  overflow: hidden;           
  background-color: #0d2a3a; 
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 42, 58, 0.7);
  display: flex;
  align-items: center;         
  justify-content: center; 
  z-index: 2;
  padding: 0 20px;
}

.banner-content {
  text-align: center;
  max-width: 700px;          
  color: #ffffff;
  position: relative;
  z-index: 3;
}

.subtitle-animate, 
.title-animate, 
.text-animate {
  opacity: 0;               
  animation: fadeInUp 1s ease-out forwards; 
}

.subtitle-animate {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c73a2;           
  margin-bottom: 15px;
  animation-delay: 0.2s;      
}

.title-animate {
  font-size: 4rem;            
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  animation-delay: 0.5s;      
}

.title-animate span {
  color: #1c73a2;        
}

.text-animate {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 0;
  animation-delay: 0.8s;      
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);    
  }
}

@media (max-width: 992px) {
  .title-animate {
    font-size: 3rem;      
  }
  .about-hero-banner {
    height: 60vh;            
  }
}

@media (max-width: 576px) {
  .title-animate {
    font-size: 2.5rem;
  }
  .text-animate {
    font-size: 1.1rem;
  }
}

/* Contact-Banner end */


/* Get in touch start */

.contact-page {
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: 'Montserrat', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header span {
  color: #1c73a2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #1e293b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #1c73a2;
  box-shadow: 0 0 0 3px rgba(28, 115, 162, 0.1);
}

.input-group {
  display: flex;
  gap: 20px;
}

.btn-submit {
  background: #1c73a2;
  color: #ffffff;
  border: none;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #165c82;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 115, 162, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item .icon {
  background: #1c73a2;
  color: #ffffff;
  min-width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.info-item h4 {
  margin-bottom: 5px;
  color: #1e293b;
}

.info-item p {
  color: #64748b;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #1c73a2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #1c73a2;
  color: #ffffff;
  transform: translateY(-4px);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  display: block;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .input-group {
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 993px) {
  .input-group input {
    width: calc(50% - 10px);
  }
}

/* Get in touch End */

/* contact section start */

.cta-banner {
  background: linear-gradient(to right, #1c73a2 0%, #0d2a3a 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Montserrat', sans-serif;
}

.cta-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; 
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
}

.cta-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.cta-form-card h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group :is(input, select, textarea) {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group :is(input, select, textarea):focus {
  outline: none;
  border-color: #ffffff; 
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group textarea::-webkit-scrollbar {
  width: 5px;
}

.form-group textarea::-webkit-scrollbar-thumb {
  background: #0d2a3a;
  border-radius: 10px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0d2a3a;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
  background: #143e54;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #1c73a2;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
  background-color: #0d2a3a;
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 992px) {
  .cta-banner {
    background: linear-gradient(to bottom, #1c73a2 0%, #0d2a3a 100%);
    padding: 60px 20px;
  }
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Contact section end */

/* footer start */

.main-footer {
  background-color: #ffffff;
  color: #475569;
  padding: 80px 20px 0px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 50px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo-img {
  max-height: 100px; 
  width: auto;     
  display: block;
}

.footer-about {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #1c73a2;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #64748b;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1c73a2;
  padding-left: 5px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #64748b;
}

.contact-list i {
  color: #1c73a2; 
  width: 20px; 
  margin-top: 5px;
  text-align: center;
}

.contact-list a {
  text-decoration: none;
  color: #64748b;
  transition: 0.3s ease;
}

.contact-list a:hover {
  color: #1c73a2; 
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f1f5f9;
  color: #1c73a2;
  text-align: center;
  line-height: 35px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #1c73a2;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #1c73a2;
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 20px 30px;
    overflow: hidden;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; 
    text-align: left;
    gap: 30px 15px; 
  }

  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 2;
    text-align: left; 
  }
  
  .footer-logo-img {
    max-height: 80px; /* Slightly smaller for mobile */
  }

  .footer-col h4::after {
    left: 0 !important;
    transform: none !important;
  }

  .contact-list li {
    justify-content: flex-start; 
    text-align: left;
    flex-direction: row; 
    flex-wrap: nowrap;
    gap: 12px;
  }

  .contact-list i {
    flex-shrink: 0;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .footer-bottom {
    text-align: left;
    padding-top: 25px;
    font-size: 0.85rem;
  }

  .developer-credit {
    text-align: left;
  }
}
/* footer end */