



:root {
  --primary-color: #041357;      /* dark blue for header, buttons */
  --secondary-color: #1a237e;    /* hover / accents */
  --highlight-color: #02963C;    /* highlight / active link */
  --highlight-colorhover: #01b649;    /* highlight / active link */
  --text-light: #fff;            /* light text */
  --paragraph-color: Black;      /*  paragraph color */
  --border-color: #e0e0e0;          /* border lines */
  




  --background-light: #e8ebf9;   /* footer background */
  --text-dark: #041357;             /* main text */
  
}





html {
  font-size: 16px; /* default = 1rem → scalable base unit */
}


/* Default font = Mukta */
body {
  font-family: 'Mukta', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-size: 16px; 
}

/* Headings use Cambria */
h1, h2, h3, h4, h5, h6 {
  font-family: Cambria, serif !important;
  font-weight: bold;
  margin-bottom: 10px;
}


/* Define consistent heading sizes */
h1 { font-size: 2.25rem; } /* ~36px */
h2 { font-size: 1.875rem; } /* ~30px */
h3 { font-size: 1.5rem; }   /* ~24px */
h4 { font-size: 1.25rem; }  /* ~20px */
h5 { font-size: 1.125rem; } /* ~18px */
h6 { font-size: 1rem; }     /* ~16px */


/* Paragraphs & sub-headings */
p, span, li, a, small {
  font-family: 'mukta', sans-serif !important;
  font-size: 1.0rem; /* global base font size */
  font-weight: 400;
  color: var(--paragraph-color);
}







html, body {
  width: 100%;
  overflow-x: hidden;   /* hides any horizontal scroll */
}

* {
  box-sizing: border-box;
}









/* Header Background */


.site-header {
  width: 100%;
  background: var(--text-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Center content with max width */
.site-header .container {
  max-width: 1920px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;

}
.company-name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

/* Navigation */
.navbar {
  flex: 1;
  margin-left: 0px;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  
}
.nav-links li {
  margin: 0 10px;
}
.nav-links a {
  text-decoration: none;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 17px;
  padding: 0px 5px;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--highlight-color);
}

/* Call to Action Button */
.btn {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: var(--highlight-color);
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
}

/* Show toggle on mobile */
@media (max-width: 1240px) {
  .menu-toggle {
    display: block;
  }
}

/* Responsive Styles */







@media (max-width: 1240px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    /* padding: 15px; */
    border-top: 1px solid #ddd;
  }

.site-header .container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;

}




  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .cta {
    display: none; /* Hide button on mobile or move inside menu */
  }
}








/* Footer */

.site-footer {
  background: #e8ebf9; /* light gray-blue */
  color: #333;
  font-size: 14px;
  padding: 40px 20px 20px;
}

/* Top Row */
.footer-top {
  max-width: 1300px;
  margin: auto;
  padding-bottom: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}
.footer-logo h3 {
  font-family: Cambria, serif;
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}
.footer-logo span {
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* Middle Row: Columns */
.footer-middle {
  max-width: 1300px;
  margin: auto;
  display: grid;                     /* use grid instead of flex */
  grid-template-columns: repeat(5, 1fr);  /* 5 equal columns */
  gap: 30px;                         /* equal gap between columns */
  padding: 0px 0;
} 

/* Add extra space only after the first column */
.footer-middle .footer-col:first-child {
  margin-right: 70px; /* adjust value as needed */
}

.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col h4 {
  font-family: 'Mukta', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 6px 0;
}
.footer-col ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #1a237e;
}
.footer-col p {
  margin-bottom: 8px;
}
.footer-col small {
  color: #666;
  font-size: 12px;
}
.footer-col hr {
  border: 0;
  border-top: 1px solid #bbb;
  margin: 10px 0;
}

/* Bottom Row */
.footer-bottom {
  max-width: 1300px;
  margin: auto;
  border-top: 1px solid #444;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  margin: 0 5px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
}
.footer-bottom a:hover {
  color: #1a237e;
}

/* Social Icons */
.footer-socials a img {
  height: 20px;
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-middle {
    flex-direction: column;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
  /* Middle container: stack columns */
  .footer-middle {
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row on tablet */
    gap: 20px;
  }
}

@media (max-width: 992px) {
  /* On mobile: one column per row */
  .footer-middle {
    grid-template-columns: 1fr; /* single column */
    text-align: left;           /* keep text aligned */
    gap: 15px;
  }

  /* Footer bottom stacked */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-socials {
    margin-top: 10px;
  }
}














/* service page contact us form */
/* 3rd section */

.contact-section-two {
  margin-top: 0;
  padding-top: 0px ;

  background-color: #0c1654;
}

/* Main container */
.contact-two-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: wrap;
}

/* Left Side Image */
.contact-two-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}




.contact-two-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  
}

/* Right Side (Form) */
.contact-two-form {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 400px;
  text-align: left;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-two-form h2 {
  margin-bottom: 15px;
  color: #0c1654;
  font-size: 22px;
}

.contact-two-form input,
.contact-two-form textarea,
.contact-two-form button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-two-form textarea {
  resize: none;
}

.contact-two-form button {
  background: #28a745;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.contact-two-form button:hover {
  background: #218838;
}

/* Message text */
#formMessage {
  margin-top: 12px;
  font-size: 14px;
  display: none;
}

/* Responsive Layouts */
@media (max-width: 1140px) {
  .contact-two-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-two-form {
    width: 100%;
    max-width: 500px;
  }
}

/* Adjustments for smaller screens */
@media (max-width: 1140px) {
  .contact-two-image img {
    display: none; /* Hide image below 1140px */
  }

  .contact-section-two {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-two-form {
    margin: 0 auto;
  }
}









/* Learn More Section */

.learn-more-section {
  background-color: var(--primary-color); /* full-width dark blue background */
  width: 100%;
  padding: 20px 40px; /* top & bottom spacing */
  padding-bottom: 40px;
  
}

.learn-more-container {
  max-width: 1300px; /* restrict content width */
  margin: 0 auto; /* center the container */
   /* small side padding for responsiveness */
  text-align: left; /* align text to left */
  color: var(--text-light);
}

.learn-more-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.learn-more-container p {
  color: var(--text-light);
  opacity: 0.9;
}










.btn-green {
  display: inline-block;
  background: var(--highlight-color);
  color: var(--text-light);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-green:hover {
      background: var(--highlight-colorhover);
}











/* ================================
   University Logos Section
   ================================ */
.university-logos {
  padding: 80px 20px;
  background: #fff;
}

.university-logos .container {
  max-width: 1300px;
  margin: 0 auto;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Desktop: 6 per row */
}

/* Logo Cell */
.logo-cell {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;

  /* Inner borders only */
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.logo-cell img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.logo-cell:hover img {
  transform: scale(1.1);
}

/* Remove right border on last column */
.logo-cell:nth-child(6n) {
  border-right: none;
}

/* Remove bottom border on last row */
.logo-cell:nth-last-child(-n+6) {
  border-bottom: none;
}

/* ================================
   Responsive
   ================================ */

/* Large Tablets (4 columns) */
@media (max-width: 1200px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Reset then apply rules */
  .logo-cell {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .logo-cell:nth-child(6n) { border-right: 1px solid #ddd; }
  .logo-cell:nth-child(4n) { border-right: none; }
  .logo-cell:nth-last-child(-n+4) { border-bottom: none; }
}

/* Tablets (3 columns) */
@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-cell {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .logo-cell:nth-child(4n) { border-right: 1px solid #ddd; }
  .logo-cell:nth-child(3n) { border-right: none; }
  .logo-cell:nth-last-child(-n+3) { border-bottom: none; }
}

/* Mobile (2 columns) */
@media (max-width: 500px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-cell {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .logo-cell:nth-child(3n) { border-right: 1px solid #ddd; }
  .logo-cell:nth-child(2n) { border-right: none; }
  .logo-cell:nth-last-child(-n+2) { border-bottom: none; }
}





















.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: zoomPulse 1.5s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}

/* ✅ ZOOM IN - ZOOM OUT EFFECT */
@keyframes zoomPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

