:root {
  --primary-blue: #0057A0;
  --light-gray: #F2F2F2;
  --lighter-gray: #EDEDED;
  --white: #FFFFFF;
  --black: #000000;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-blue: rgba(0, 87, 160, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), #0066B8);
  
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
  
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  --z-dropdown: 1000;
  --z-sticky: 1010;
  --z-fixed: 1020;
  --z-modal: 1030;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1{

 font-family: "Ubuntu", sans-serif !important;
}

h2{
font-family: "Roboto", sans-serif !important;
    
}

h3{

font-family: "Open Sans", sans-serif !important;
}

h4{
font-family: "Open Sans", sans-serif !important;

}

p{

  font-family: "Montserrat", sans-serif !important;
}
a {
    font-family: "Montserrat", sans-serif !important;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-medium);
 font-size: 13px;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-medium);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
 
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* NAVBAR STARTS */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--dark-gray);
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.search-container {
  position: relative;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: var(--transition-medium);
}

.search-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.search-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-sm);
  display: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition-medium);
}

.search-dropdown.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.search-dropdown .form-group {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xs);
  width: 100%;
}

.search-input {
  flex: 1;
  padding: var(--spacing-xs) var(--spacing-sm);
  border: 2px solid var(--lighter-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition-medium);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.search-submit {
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition-medium);
}

.search-submit:hover {
  background: #004080;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-medium);
}

.login-btn:hover {
  background: #004080;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition-medium);
}

/* HOME PAGE STARTS*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 100;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-primary,
.cta-secondary {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--light-gray);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xs);
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-medium);
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 30px;
  color: var(--white);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.5rem;
  opacity: 0.8;
}

.services-preview {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm);
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.service-link {
  color: var(--primary-blue);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: var(--transition-medium);
}

.service-link:hover {
  gap: var(--spacing-sm);
  color: #004080;
}

.founder-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  align-items: center;
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.founder-image {
  position: relative;
  text-align: center;
}

.founder-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: var(--lighter-gray);
}

.founder-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.founder-badge {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  box-shadow: var(--shadow-md);
}

.founder-content {
  padding: var(--spacing-sm);
}

.founder-name {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

.founder-quote {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  opacity: 0.3;
  margin-bottom: var(--spacing-xs);
}

.founder-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.founder-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.founder-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-medium);
  text-decoration: none;
}

.founder-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.founder-btn.whatsapp:hover {
  background: #20B358;
  transform: translateY(-2px);
}

.founder-btn.linkedin {
  background: #0077B5;
  color: var(--white);
}

.founder-btn.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
}

.founder-btn.cv {
  background: var(--primary-blue);
  color: var(--white);
}

.founder-btn.cv:hover {
  background: #004080;
  transform: translateY(-2px);
}

.video-section {
  padding: var(--spacing-xxl) 0;
  background: var(--lighter-gray);
  position: relative;
  z-index: 1;
}

.video-content {
  text-align: center;
}

.video-content h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

.video-content p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  transition: var(--transition-medium);
  background: var(--primary-blue);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: var(--transition-medium);
  z-index: 10;
}

.play-btn:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.video-player {
  width: 100%;
  height: 450px;
}

.testimonials {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.testimonial-card {
  background: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border-left: 4px solid var(--primary-blue);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: var(--spacing-md);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--spacing-sm);
  color: #FFD700;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  background: var(--lighter-gray);
}

.author-info h4 {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--medium-gray);
}


.stats {
  padding: var(--spacing-xxl) 0;
  background: var(--lighter-gray);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: var(--transition-slow);
}

.stat-card.counting::before {
  left: 0;
}

.stat-card.counted::before {
  left: 0;
  background: var(--primary-blue);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
  display: block;
  min-height: 4rem;
  line-height: 1;
  transition: var(--transition-medium);
}

.stat-card.counting .stat-number {
  color: #0066B8;
  text-shadow: 0 2px 4px rgba(0, 87, 160, 0.2);
}

.stat-card.counted .stat-number {
  animation: pulse-once 0.5s ease-out;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse-once {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }

}
/* HOME PAGE ENDS*/

/* NEWSLETTER STARTS */

.newsletter {
    padding: 4rem 0;
    background: var(--primary-blue);
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: #ffffff;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 0;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #333;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    height: 50px;
    padding: 0 2rem;
    background: #4fa3d1;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    min-width: 120px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #3d8ab8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* NEWSLETTER ENDS */
/* FOOTER SECTION STARTS*/
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

.footer-desc {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  font-size: 1.2rem;
}

.social-link.facebook {
  background: #1877F2;
}

.social-link.twitter {
  background: #1DA1F2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link.linkedin {
  background: #0077B5;
}

.social-link.youtube {
  background: #FF0000;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-medium);
  padding: 2px 0;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: var(--spacing-xs);
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  background: transparent;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  opacity: 0.8;
}

.contact-item i {
  color: var(--primary-blue);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
.footer-bottom-links {
  display: flex;
  gap: var(--spacing-md);
}
.footer-bottom-content p{
    font-size: 12px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: var(--transition-medium);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* FOOTER SECTION ENDS*/


/* ABOUT PAGE STARTS */
.about-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #F2F2F2 0%, #EDEDED 100%);
}

.about-hero {
    background: linear-gradient(135deg, #0057A0 0%, #003d73 100%);
    color: #FFFFFF;
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 180px;
    padding: 15px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    margin-bottom: 10px;

}

.stat-item .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    
}
.stat-label{
    margin-top: -8px !important;
}
.founder-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-section .section-header {
    text-align: center;
    
}

.founder-section .section-header h2 {
    font-size: 2.8rem;
    color: #0057A0;
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0 var(--spacing-xl) 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,87,160,0.1);
    border: 1px solid #EDEDED;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0057A0, #003d73);
}

.founder-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0057A0;
    box-shadow: 0 15px 30px rgba(0,87,160,0.2);
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.founder-name h3 {
    font-size: 2.2rem;
    color: #0057A0;
    font-weight: 700;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.founder-quote {
    position: relative;
    background: linear-gradient(135deg, #F2F2F2, #EDEDED);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #0057A0;
}

.founder-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    padding-left: 20px;
}

.founder-education h4,
.founder-story h4 {
    color: #0057A0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-list li {
    background: #F2F2F2;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid #0057A0;
    font-size: 1rem;
}

.founder-story p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.founder-contact h4 {
    color: #0057A0;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37,211,102,0.3);
}

.linkedin-btn {
    background: #0077B5;
    color: #FFFFFF;
}

.linkedin-btn:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,119,181,0.3);
}

.cv-btn {
    background: #DC3545;
    color: #FFFFFF;
}

.cv-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220,53,69,0.3);
}

.mission-vision {
    background: #FFFFFF;
    padding: 80px 20px;
    margin: 60px 0;
}

.mv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card,
.vision-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F2F2F2 0%, #EDEDED 100%);
    border: 1px solid #E0E0E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,87,160,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0057A0, #003d73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #FFFFFF;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: #0057A0;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,87,160,0.08);
    border: 1px solid #EDEDED;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,87,160,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0057A0, #003d73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #0057A0;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.5;
}

.journey-section {
    background: linear-gradient(135deg, #F2F2F2 0%, #EDEDED 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0057A0, #003d73);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: -29px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0057A0, #003d73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,87,160,0.3);
}

.timeline-content {
    background: #FFFFFF;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,87,160,0.1);
    border-left: 4px solid #0057A0;
}

.timeline-content h4 {
    color: #0057A0;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #0057A0 0%, #003d73 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-btn.primary {
    background: #FFFFFF;
    color: #0057A0;
}

.cta-btn.primary:hover {
    background: #F2F2F2;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-btn.secondary:hover {
    background: #FFFFFF;
    color: #0057A0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255,255,255,0.3);
}


 /* ABOUT OAGE ENDS*/


/* SERVICES PAGE STARTS */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 88, 160, 0.84) 0%, rgba(0, 61, 115, 0.849) 100%),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
   
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    animation: fadeInUp 1s ease-out;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.services-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.services-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.services-hero .stat {
    text-align: center;
    min-width: 180px;
    padding:15px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.services-hero .stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 4rem;
    line-height: 1;
}

.services-hero .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.services-hero .stat.counting .stat-number {
    animation: countUp 0.5s ease-out;
}

.services-grid {
    padding: 80px 0;
    background: #F2F2F2;
}

.services-grid h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0057A0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 87, 160, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0057A0, #004080);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 87, 160, 0.2);
    border-color: #0057A0;
}

.service-card.selected {
    border-color: #0057A0;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.service-card.selected::before {
    transform: scaleX(1);
}

.service-card.featured {
    position: relative;
    border: 2px solid #0057A0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #0057A0, #004080);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0057A0, #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0057A0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0057A0;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1.8rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0057A0;
    font-weight: bold;
}

.select-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0057A0, #004080);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-service-btn:hover {
    background: linear-gradient(135deg, #004080, #003060);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 87, 160, 0.3);
}

.select-service-btn.selected {
    background: linear-gradient(135deg, #28a745, #20893d);
}

.select-service-btn.selected:hover {
    background: linear-gradient(135deg, #20893d, #1e7e34);
}

.cost-calculator {
    padding: 80px 0;
    background: white;
}

.calculator-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calculator-header h2 {
    font-size: 2.8rem;
    color: #0057A0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.calculator-header p {
    font-size: 1.2rem;
    color: #666;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: #F2F2F2;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #EDEDED;
}

.selected-services h3 {
    color: #0057A0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.selected-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 4px solid #0057A0;
}

.service-name {
    font-weight: 500;
    color: #333;
}

.service-price {
    font-weight: 700;
    color: #0057A0;
}

.no-services {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.service-details {
    margin-top: 2rem;
}

.detail-group {
    margin-bottom: 1.5rem;
}

.detail-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0057A0;
}

.detail-group select,
.detail-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.detail-group select:focus,
.detail-group input:focus {
    outline: none;
    border-color: #0057A0;
}

.detail-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.calculate-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #0057A0, #004080);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #004080, #003060);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 87, 160, 0.3);
}

.cost-breakdown {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 87, 160, 0.1);
    border: 2px solid #EDEDED;
    height: fit-content;
}

.cost-breakdown h3 {
    color: #0057A0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #EDEDED;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    border-top: 2px solid #0057A0;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0057A0;
}

.breakdown-item.deposit {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    margin: 1rem -1rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #0057A0;
}

.payment-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proceed-btn,
.contact-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
}

.proceed-btn {
    background: linear-gradient(135deg, #28a745, #20893d);
    color: white;
}

.proceed-btn:hover {
    background: linear-gradient(135deg, #20893d, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.contact-btn {
    background: transparent;
    color: #0057A0;
    border: 2px solid #0057A0;
}

.contact-btn:hover {
    background: #0057A0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 87, 160, 0.3);
}

.why-choose-us {
    padding: 80px 0;
    background: #F2F2F2;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0057A0;
    margin-bottom: 4rem;
    font-weight: 700;
}
.testimonials h2{
  text-align: center;
    font-size: 2.8rem;
    color: #0057A0;
    margin-bottom: 4rem;
    font-weight: 700;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 87, 160, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 87, 160, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0057A0, #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2.2rem;
    color: white;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #0057A0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.rating {
    color: #ffa500;
}

.rating i {
    margin-right: 0.2rem;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0057A0 0%, #004080 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: white;
    color: #0057A0;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0057A0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


/* SERVICES PAGE ENDS */

/* RESOURCES PAGE STARTS */

.resources-hero {
   background: linear-gradient(135deg, rgba(0, 88, 160, 0.897) 0%, rgba(0, 61, 115, 0.884) 100%),
    url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
   height: 100vh;
    display: flex;
    align-items: center;
}

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        opacity: 0.9;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 2rem;
    }

    .quick-tools {
        padding: 80px 0;
        background: #F2F2F2;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #000000;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #0057A0;
    }

    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .tool-card {
        background: #FFFFFF;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,87,160,0.2);
    }

    .tool-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #0057A0, #003d73);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: #FFFFFF;
        font-size: 1.5rem;
    }

    .tool-card h3 {
        margin-bottom: 1rem;
        color: #000000;
        font-size: 1.25rem;
    }

    .tool-card p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .tool-btn {
        background: #0057A0;
        color: #FFFFFF;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .tool-btn:hover {
        background: #003d73;
        transform: scale(1.05);
    }

    .resource-categories {
        padding: 80px 0;
        background: #FFFFFF;
    }

    .category-tabs {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .tab-btn {
        background: #EDEDED;
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        color: #000000;
    }

    .tab-btn.active,
    .tab-btn:hover {
        background: #0057A0;
        color: #FFFFFF;
    }

    .category-panel {
        display: none;
    }

    .category-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .resource-item {
        background: #F2F2F2;
        padding: 2rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .resource-item:hover {
        border-color: #0057A0;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,87,160,0.15);
    }

    .resource-icon {
        width: 50px;
        height: 50px;
        background: #0057A0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        color: #FFFFFF;
        font-size: 1.25rem;
    }

    .resource-item h3 {
        margin-bottom: 1rem;
        color: #000000;
        font-size: 1.2rem;
    }

    .resource-item p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .resource-meta {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .resource-type,
    .resource-duration {
        background: #EDEDED;
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        font-size: 0.85rem;
        color: #666;
    }

    .resource-btn {
        background: #0057A0;
        color: #FFFFFF;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        width: 100%;
    }

    .resource-btn:hover {
        background: #003d73;
    }

    .featured-downloads {
        padding: 80px 0;
        background: #F2F2F2;
    }

    .downloads-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .download-card {
        background: #FFFFFF;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .download-card.featured {
        border: 2px solid #0057A0;
        transform: scale(1.02);
    }

    .download-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .download-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .download-icon {
        width: 50px;
        height: 50px;
        background: #0057A0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 1.25rem;
    }

    .featured-badge {
        background: #0057A0;
        color: #FFFFFF;
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .download-stats {
        display: flex;
        gap: 1rem;
        margin: 1rem 0;
        font-size: 0.9rem;
        color: #666;
    }

    .download-stats i {
        margin-right: 0.25rem;
        color: #0057A0;
    }

    .download-btn {
        background: #0057A0;
        color: #FFFFFF;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        width: 100%;
        margin-top: 1rem;
    }

    .download-btn.primary {
        background: linear-gradient(135deg, #0057A0, #003d73);
        box-shadow: 0 4px 15px rgba(0,87,160,0.3);
    }

    .download-btn:hover {
        background: #003d73;
        transform: translateY(-2px);
    }

    .download-btn.primary:hover {
        background: linear-gradient(135deg, #003d73, #002a52);
    }

    .video-tutorials {
        padding: 80px 0;
        background: #FFFFFF;
    }

    .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .video-card {
        background: #F2F2F2;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .video-thumbnail {
        position: relative;
        overflow: hidden;
    }

    .video-thumbnail img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .video-card:hover .video-thumbnail img {
        transform: scale(1.05);
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(0,87,160,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .video-card:hover .play-button {
        background: #0057A0;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .video-duration {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0,0,0,0.8);
        color: #FFFFFF;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-info h3 {
        margin-bottom: 0.5rem;
        color: #000000;
        font-size: 1.1rem;
    }

    .video-info p {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .video-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .video-meta i {
        margin-right: 0.25rem;
        color: #0057A0;
    }

   

   
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .slide-in-left {
        animation: slideInLeft 0.6s ease forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .slide-in-right {
        animation: slideInRight 0.6s ease forwards;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .loading {
        opacity: 0.7;
        pointer-events: none;
    }

    .loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid #0057A0;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .success {
        background: #28a745 !important;
        color: #FFFFFF !important;
    }

    .success::before {
        content: '✓ ';
    }

    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }
    .hidden { display: none !important; }
    .visible { display: block !important; }
    .mt-1 { margin-top: 0.25rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-3 { margin-top: 1rem; }
    .mb-1 { margin-bottom: 0.25rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 1rem; }

    .tool-card:focus,
    .resource-item:focus,
    .download-card:focus,
    .video-card:focus {
        outline: 3px solid #0057A0;
        outline-offset: 2px;
    }

    .tool-btn:focus,
    .resource-btn:focus,
    .download-btn:focus,
    .tab-btn:focus {
        outline: 3px solid #0057A0;
        outline-offset: 2px;
    }
    @media print {
        .resources-hero,
        .newsletter-section {
            background: #FFFFFF !important;
            color: #000000 !important;
        }
        
        .tool-card,
        .resource-item,
        .download-card {
            break-inside: avoid;
            box-shadow: none;
            border: 1px solid #EDEDED;
        }
    }
/* RESOURCES PAGE ENDS */

/* PORTFOLIO PAGE STARTS */
.portfolio-main {
    margin-top: 80px; 
}
.portfolio-hero {
    background: linear-gradient(135deg, rgba(0, 88, 160, 0.897) 0%, rgba(0, 61, 115, 0.884) 100%),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: #FFFFFF;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    height: 93vh;
}

.portfolio-hero .container {
    position: relative;
    z-index: 2;
}
.portfolio-hero .hero-content {
    text-align: center;
}

.portfolio-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}
.portfolio-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.portfolio-hero .stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.portfolio-hero .stat-item {
    text-align: center;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.portfolio-hero .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 3rem;
    line-height: 1;
    display: block;
}

.portfolio-hero .stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-hero .stat-item.counting h3 {
    animation: countUp 0.5s ease-out;
}
.portfolio-filters {
    padding: 2rem 0;
    background: #F2F2F2;
    border-bottom: 1px solid #EDEDED;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: #FFFFFF;
    border: 2px solid #EDEDED;
    border-radius: 25px;
    font-weight: 600;
    color: #0057A0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0057A0;
    color: #FFFFFF;
    border-color: #0057A0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 160, 0.3);
}

.portfolio-grid-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #EDEDED;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    position: relative;
}

.dissertation-bg {
    background: linear-gradient(135deg, #0057A0, #004080);
}

.assignment-bg {
    background: linear-gradient(135deg, #28a745, #20873c);
}

.proofreading-bg {
    background: linear-gradient(135deg, #fd7e14, #e96606);
}

.tutoring-bg {
    background: linear-gradient(135deg, #6f42c1, #59359a);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image:hover .overlay {
    opacity: 1;
}

.view-btn {
    padding: 0.8rem 1.5rem;
    background: #FFFFFF;
    color: #0057A0;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.overlay:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: #0057A0;
    color: #FFFFFF;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.service-type {
    color: #0057A0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.grade {
    background: #28a745;
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.duration {
    color: #666;
    font-weight: 500;
}

.success-stories {
    padding: 4rem 0;
    background: #F2F2F2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: #0057A0;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: #000000;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
}

.process-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F2F2F2;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #EDEDED;
    transform: translateY(-3px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0057A0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.portfolio-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0057A0 0%, #004080 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FFFFFF;
    color: #0057A0;
}

.btn-primary:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #0057A0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
}

.contact-modal-body h3 {
    color: #0057A0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0057A0;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-detail {
    text-align: left;
}

.modal-detail h2 {
    color: #0057A0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-detail .project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #F2F2F2;
    border-radius: 10px;
}

.modal-detail .meta-item {
    text-align: center;
}

.modal-detail .meta-item strong {
    display: block;
    color: #0057A0;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.modal-detail .meta-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.modal-detail .project-description {
    line-height: 1.6;
    color: #333;
    margin: 1.5rem 0;
}

.modal-detail .project-highlights {
    margin: 1.5rem 0;
}

.modal-detail .project-highlights h4 {
    color: #0057A0;
    margin-bottom: 0.8rem;
}

.modal-detail .highlights-list {
    list-style: none;
    padding: 0;
}

.modal-detail .highlights-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.modal-detail .highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.modal-detail .project-outcome {
    background: linear-gradient(135deg, #28a745, #20873c);
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.modal-detail .project-outcome h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}


.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 87, 160, 0.3);
    border-radius: 50%;
    border-top-color: #0057A0;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.portfolio-card:hover::before {
    left: 100%;
}

.filter-btn:focus,
.view-btn:focus,
.btn:focus {
    outline: 2px solid #0057A0;
    outline-offset: 2px;
}

.portfolio-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media print {
    .portfolio-hero,
    .portfolio-cta,
    .modal {
        display: none;
    }
    
    .portfolio-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .overlay {
        display: none;
    }
}
/* PORTFOLIO PAGE ENDS */

/* CONTACT PAGE STARTS */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 88, 160, 0.897) 0%, rgba(0, 61, 115, 0.884) 100%),
    url('https://images.unsplash.com/photo-1573164574230-db1d5e960238?q=80&w=2069&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
   color: #FFFFFF;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.portfolio-hero .container {
    position: relative;
    z-index: 2;
}
.contact .hero-content {
    text-align: center;
}

.contact .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}
.contact .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}


.contact-main {
    padding: 80px 0;
    margin: 0 auto !important;
    width: 50%;
}



.contact-form-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 0.8s ease-out;
    margin: 0 auto !important;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: #0057A0;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0057A0;
    box-shadow: 0 0 0 3px rgba(0, 87, 160, 0.1);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
    animation: shake 0.3s ease-in-out;
}

.character-count {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #EDEDED;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0057A0;
    border-color: #0057A0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.terms-link,
.privacy-link {
    color: #0057A0;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover,
.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #0057A0 0%, #003d73 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 87, 160, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 0.8s ease-out;
}

.contact-info {
    background: #FFFFFF;
    border-radius: 15px;
}

.contact-info h3 {
    color: #0057A0;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0057A0 0%, #003d73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: #0057A0;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-content small {
    color: #666;
    font-size: 0.85rem;
}

.social-links {
    border-top: 1px solid #EDEDED;
    padding-top: 20px;
}

.social-links h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.email {
    background: #ea4335;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-calculator {
    background: linear-gradient(135deg, #0057A0 0%, #003d73 100%);
    padding: 25px;
    border-radius: 15px;
    color: #FFFFFF;
}

.quick-calculator h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.quick-calculator p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-select,
.calc-input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.calc-select option {
    background: #0057A0;
    color: #FFFFFF;
}

.calc-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.estimate-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.estimate-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.get-quote-btn {
    background: #FFFFFF;
    color: #0057A0;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-quote-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}
.faq-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #EDEDED;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: #F2F2F2;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #EDEDED;
}

.faq-question h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0057A0;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #e74c3c;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    text-align: center;
    padding: 30px 30px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: #27ae60;
    font-size: 3rem;
}

.modal-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.modal-body {
    padding: 0 30px 20px;
    text-align: center;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.modal-close-btn {
    background: #0057A0;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #003d73;
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}
 .fade-in {
        animation: fadeInUp 0.6s ease forwards;
    }
/* CONTACT PAGE ENDS */


/* Chat Styling */
.chat-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    height: 600px;
}

.chat-sidebar {
    background: #F2F2F2;
    border-radius: 10px;
    padding: 15px;
    overflow-y: auto;
}

.chat-sidebar h3 {
    margin-bottom: 15px;
    color: #0057A0;
}

.chat-search {
    width: 100%;
    padding: 10px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    margin-bottom: 15px;
}

.chat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-item:hover,
.chat-item.active {
    background: #0057A0;
    color: #FFFFFF;
}

.chat-item.active .chat-name,
.chat-item.active .chat-preview {
    color: #FFFFFF;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0057A0;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.chat-preview {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-badge {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
}

.chat-main {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #F2F2F2;
    border-bottom: 1px solid #EDEDED;
}

.chat-header h3 {
    margin: 0;
    color: #0057A0;
}

.chat-status {
    font-size: 0.85rem;
    color: #28a745;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #FAFAFA;
}

.chat-welcome {
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

.message {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 12px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-message {
    align-self: flex-start;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
}

.tutor-message,
.admin-message {
    align-self: flex-end;
    background: #0057A0;
    color: #FFFFFF;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.message-time {
    opacity: 0.7;
    font-size: 0.75rem;
}

.message-content {
    word-wrap: break-word;
    line-height: 1.4;
}

.message-attachment {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.message-attachment a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.client-message .message-attachment {
    border-top-color: #EDEDED;
}

.chat-input-container {
    padding: 15px 20px;
    background: #F2F2F2;
    border-top: 1px solid #EDEDED;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-area input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #EDEDED;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-area input[type="text"]:focus {
    border-color: #0057A0;
}

.chat-input-area button {
    padding: 12px 20px;
    background: #0057A0;
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-input-area button:hover {
    background: #003d73;
    transform: scale(1.05);
}

#adminAttachBtn,
#attachBtn {
    background: transparent;
    color: #0057A0;
    font-size: 1.2rem;
    padding: 8px 12px;
}

#adminAttachBtn:hover,
#attachBtn:hover {
    background: #EDEDED;
    transform: scale(1.1);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 10px 0 0;
    font-size: 0.85rem;
    color: #666;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #0057A0;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Project Item Styling */
.project-item {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #EDEDED;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.project-item:hover {
    box-shadow: 0 5px 15px rgba(0, 87, 160, 0.1);
    transform: translateY(-2px);
}

.project-info {
    flex: 1;
}

.project-info h4 {
    color: #0057A0;
    margin-bottom: 10px;
}

.project-notes {
    margin-top: 10px;
    padding: 10px;
    background: #F2F2F2;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #EDEDED;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0057A0, #0066B8);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
}

/* Modal Improvements */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    color: #0057A0;
    margin-bottom: 20px;
}

.close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000000;
}

/* Client Details Styling */
.client-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #F2F2F2;
    border-radius: 8px;
}

.detail-row strong {
    color: #0057A0;
}

/* Upload Progress */
.upload-progress {
    margin-top: 15px;
    padding: 15px;
    background: #F2F2F2;
    border-radius: 8px;
}

.upload-progress .progress-bar {
    margin: 10px 0;
}

#uploadStatus {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Event Item */
.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #0057A0;
    transition: all 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 3px 10px rgba(0, 87, 160, 0.15);
    transform: translateX(5px);
}

.event-date {
    font-weight: 700;
    color: #0057A0;
    min-width: 60px;
}

.event-text {
    flex: 1;
    color: #333;
}

.event-edit,
.event-delete {
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.event-edit {
    background: #0057A0;
    color: #FFFFFF;
}

.event-edit:hover {
    background: #003d73;
}

.event-delete {
    background: #e74c3c;
    color: #FFFFFF;
}

.event-delete:hover {
    background: #c0392b;
}

/* Calendar Day Styling */
.calendar-day {
    padding: 10px;
    text-align: center;
    border: 1px solid #EDEDED;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background: #F2F2F2;
}

.calendar-day.today {
    background: #0057A0;
    color: #FFFFFF;
    font-weight: bold;
}

.calendar-day.has-event {
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
}

.calendar-day-header {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #0057A0;
    background: #F2F2F2;
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

/* Analytics Styling */
.analytics-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.analytics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.analytics-card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 87, 160, 0.1);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 87, 160, 0.15);
}

.analytics-card h3 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0057A0;
    margin-bottom: 10px;
}

.analytics-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.analytics-change.positive {
    color: #28a745;
}

.analytics-change.negative {
    color: #e74c3c;
}

.charts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.chart-container {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 87, 160, 0.1);
}

.chart-container h3 {
    color: #0057A0;
    margin-bottom: 20px;
}

.chart-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.service-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #F2F2F2;
    border-radius: 8px;
    border-left: 4px solid #0057A0;
    transition: all 0.3s ease;
}

.service-stat:hover {
    background: #EDEDED;
    transform: translateX(5px);
}

.service-name {
    font-weight: 600;
    color: #333;
}

.service-count {
    font-weight: 700;
    color: #0057A0;
    font-size: 1.1rem;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #0057A0, #003d73);
    color: #FFFFFF;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 87, 160, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003d73, #002a52);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 87, 160, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-small {
    padding: 6px 12px;
    background: #0057A0;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #003d73;
}

.btn-small.delete {
    background: #e74c3c;
}

.btn-small.delete:hover {
    background: #c0392b;
}

.quick-action-btn {
    padding: 15px 20px;
    background: #FFFFFF;
    border: 2px solid #0057A0;
    color: #0057A0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.quick-action-btn:hover {
    background: #0057A0;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 87, 160, 0.2);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Status Badges */
.status-active {
    padding: 5px 12px;
    background: #28a745;
    color: #FFFFFF;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-inactive {
    padding: 5px 12px;
    background: #e74c3c;
    color: #FFFFFF;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Loading States */
.loading-cell {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.no-clients,
.no-projects,
.no-activity,
.no-chats,
.no-events,
.no-selection {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar,
.chat-sidebar::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track,
.chat-sidebar::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    background: #F2F2F2;
}

.chat-messages::-webkit-scrollbar-thumb,
.chat-sidebar::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: #0057A0;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.chat-sidebar::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #003d73;
}
/* Responsive Design */

/* Large Desktops (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
}

/* Desktops (1200px to 1399px) - Default styles would apply here */

/* Medium Desktops/Laptops (992px to 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .founder-card {
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
  }
  
  .founder-img {
    width: 240px;
    height: 240px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 960px;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-xl);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: var(--spacing-sm) 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-actions {
    margin-left: auto;
    gap: 0.8rem;
  }
  
  .hamburger {
    display: flex;
    margin-left: 10px;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .founder-image {
    text-align: center;
  }
  
  .founder-img {
    margin: 0 auto;
    display: block;
  }
  
  .founder-details {
    text-align: center;
  }
  
  .founder-actions,
  .contact-buttons {
    justify-content: center;
  }
  
  .mv-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-main {
    width: 70%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    left: -24px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .charts-section {
    grid-template-columns: 1fr;
  }
  
  .about-hero {
    padding: 140px 20px 60px;
    min-height: 500px;
  }
  
  .about-hero .hero-content {
    padding-top: 20px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 20px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    min-width: 140px;
    padding: 10px 8px;
  }
  
  .stat-item .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    min-height: 2.5rem;
  }
  
  .stat-item .stat-label {
    font-size: 0.85rem;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .stat-item {
    min-width: 150px;
    padding: 12px;
  }
  
  .stat-item .stat-number {
    font-size: 2.2rem;
  }
  
  .services-hero {
    padding: 120px 20px 80px;
    min-height: 500px;
  }
  
  .services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .services-hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .services-hero .hero-stats {
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .services-hero .stat {
    min-width: 150px;
    padding: 12px;
  }
  
  .services-hero .stat-number {
    font-size: 2.2rem;
  }
  
  .resources-hero {
    padding: 120px 20px 80px;
    min-height: 500px;
    height: auto;
  }
  
  .resources-hero .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .resources-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .resources-hero .hero-stats {
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .resources-hero .stat-item {
    min-width: 150px;
    padding: 12px;
  }
  
  .footer .contact-info {
    text-align: center;
  }
  
  .footer .contact-info .contact-item {
    justify-content: center;
  }
  
  .services-hero {
    min-height: 95vh;
    height: 95vh;
  }
  
  .services-hero .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .services-hero-text p {
    font-size: 1.1rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 600px;
    width: 400px;
  }
}

/* Tablet Specific Range (767px to 990px) */
@media only screen and (min-width: 767px) and (max-width: 990px) {
  .services-hero {
    min-height: 100vh;
    height: 100vh;
    padding: 150px 150px;
  }
  
  .services-hero .hero-content h1 {
    margin-top: 60px;
    font-size: 2.2rem;
  }
  
  .services-hero-text p {
    font-size: 1.2rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 75px;
    width: 600px;
  }
}

/* Tablet/Mobile Specific Range (550px to 766px) */
@media only screen and (min-width: 550px) and (max-width: 766px) {
  .services-hero {
    min-height: 100vh;
    height: 100vh;
  }
  
  .services-hero .hero-content h1 {
    margin-top: 60px;
    font-size: 22rem;
  }
  
  .services-hero-text p {
    font-size: 1.2rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 90px;
    width: 620px !important;
    padding: 0 20px;
  }
  
  .hero-content .hero-stats .stat-number {
    font-size: 1.8rem;
  }
}

/* Tablet/Mobile Specific Range (550px to 655px) */
@media only screen and (min-width: 550px) and (max-width: 655px) {
  .services-hero {
    height: 100vh !important;
  }
  
  .services-hero .hero-content h1 {
    margin-top: 60px;
    font-size: 2.2rem !important;
  }
  
  .services-hero-text p {
    font-size: 1.2rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 90px;
    width: 560px !important;
  }
  
  .hero-content .hero-stats .stat-number {
    font-size: 1.6rem;
    margin-bottom: -10px;
  }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 720px;
    padding: 0 var(--spacing-sm);
  }
  
  .nav-actions {
    gap: 0.8rem;
  }
  
  .hamburger {
    margin-left: 10px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .hero-stats,
  .hero-indicators {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .services-grid,
  .services-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .service-card {
    padding: var(--spacing-md);
  }
  
  .about-hero {
    padding: 520px 20px 60px;
    min-height: 450px;
  }
  
  .about-hero .hero-content {
    padding-top: 15px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2rem;
    margin-top: 15px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .founder-card {
    padding: var(--spacing-md);
  }
  
  .founder-photo {
    width: 220px;
    height: 220px;
  }
  
  .founder-name h3 {
    font-size: 1.8rem;
  }
  
  .founder-section,
  .values-section,
  .journey-section,
  .process-section {
    padding: 60px 15px;
  }
  
  .founder-section .section-header h2 {
    font-size: 2rem;
  }
  
  .founder-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-marker {
    left: -19px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
  }
  
  .services-hero .hero-stats {
    flex-direction: column;
  }
  
  .services-hero {
    min-height: 95vh;
    height: 95vh;
  }
  
  .services-hero .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .services-hero-text p {
    font-size: 1.1rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 60px;
    width: 400px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .category-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  .resources-grid,
  .downloads-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-hero {
    padding: 100px 20px 60px;
  }
  
  .portfolio-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    gap: var(--spacing-xs);
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .contact-hero {
    padding: 100px 20px 60px;
  }
  
  .contact-main {
    width: 85%;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .info-items {
    gap: var(--spacing-sm);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .chat-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .chat-sidebar {
    height: 250px;
    margin-bottom: var(--spacing-md);
  }
  
  .chat-main {
    height: 500px;
  }
  
  .analytics-cards {
    grid-template-columns: 1fr;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (480px to 575px) */
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  
  .nav-container {
    height: 70px;
    padding: 0 var(--spacing-sm);
  }
  
  .nav-logo {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .nav-actions {
    gap: 0.8rem;
  }
  
  .hamburger {
    margin-left: 10px;
  }
  
  .search-dropdown {
    width: calc(100vw - 30px);
    right: -10px;
  }
  
  .hero-title {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-cta {
    gap: var(--spacing-xs);
  }
  
  .cta-primary,
  .cta-secondary {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    max-width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .service-card {
    padding: var(--spacing-md);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .founder-card {
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }
  
  .founder-img {
    width: 180px;
    height: 180px;
  }
  
  .founder-name {
    font-size: 1.5rem;
  }
  
  .founder-quote p {
    font-size: 1rem;
  }
  
  .founder-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
  }
  
  .video-content h2 {
    font-size: 1.8rem;
  }
  
  .video-placeholder,
  .video-player {
    height: 250px;
  }
  
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: var(--spacing-md);
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .about-hero {
    padding: 100px 15px 60px;
    min-height: 450px;
  }
  
  .about-hero .hero-content {
    padding-top: 10px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-top: 10px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .stat-item .stat-number {
    font-size: 2rem;
  }
  
  .stat-item {
    padding: 10px 6px;
    min-width: 120px;
  }
  
  .stat-item .stat-number {
    font-size: 1.5rem;
    min-height: 2rem;
  }
  
  .stat-item .stat-label {
    font-size: 0.75rem;
  }
  
  .founder-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    display: block;
  }
  
  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .tool-card,
  .resource-item,
  .download-card {
    padding: var(--spacing-md);
  }
  
  .tool-icon,
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .portfolio-hero {
    padding: 80px 15px 60px;
    height: 80vh;
    min-height: 500px;
  }
  
  .portfolio-hero .hero-title {
    font-size: 2rem;
  }
  
  .portfolio-hero .stat-item h3 {
    font-size: 1.8rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .placeholder-image {
    font-size: 2rem;
  }
  
  .view-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .modal-detail .project-meta {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
  
  .contact-hero {
    padding: 80px 15px 60px;
    height: 70vh;
    min-height: 450px;
  }
  
  .contact .hero-title {
    font-size: 2rem;
  }
  
  .contact-main {
    width: 95%;
    padding: 60px 0;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .quick-calculator {
    padding: 20px;
  }
  
  .faq-question {
    padding: 15px 18px;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
  
  .faq-toggle {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
  
  .newsletter {
    padding: var(--spacing-xl) 0;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-text p {
    font-size: 1rem;
  }
  
  .newsletter-input,
  .newsletter-btn {
    height: 45px;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-sm);
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
  }
  
  .footer-logo {
    font-size: 1.3rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .message {
    max-width: 85%;
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .chat-input-area input[type="text"] {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .chat-input-area button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (360px to 479px) */
@media (max-width: 479px) {
  html {
    font-size: 13px;
  }
  
  .nav-container {
    height: 65px;
  }
  
  .nav-logo {
    font-size: 1.2rem;
  }
  
  .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
  }
  
  .nav-actions {
    gap: 0.8rem;
  }
  
  .hamburger {
    margin-left: 8px;
  }
  
  
 .index h1{
    margin-top: -80px ;
  }
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .founder-img {
    width: 160px;
    height: 160px;
  }
  
  .founder-name {
    font-size: 1.4rem;
  }
  
  .video-placeholder,
  .video-player {
    height: 200px;
  }
  
  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .about-hero {
    padding: 500px 15px 40px;
   height: 85vh;
  }
  
  .hero-content {
    padding-top: 8px;
  }
  
  .hero .hero-content {
    margin-top: -100px;
  }
  
  .about-hero .hero-content {
    padding-top: 5px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2rem;
    margin-top: 50px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-hero .stat-item {
    font-size: 1.4rem;
    height: 50px;
    width: 320px;
  }
  
  .about-hero .stat-item .stat-number {
    margin-top: -10px;
  }
  
  .stat-item {
    padding: 20px 40px;
    min-width: 110px;
    width: 55%;
    height: 90px;
    margin: 0 auto;
  }
  
  .stat-item .stat-number {
    font-size: 1.4rem;
    min-height: 1.8rem;
  }
  
  .stat-item .stat-label {
    font-size: 0.7rem;
  }
  
  .founder-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: block;
  }
  
  .contact-main {
    width: 100%;
    padding: 40px 0;
  }
  
  .contact-form-container {
    padding: 15px;
  }
  
  .form-header h2 {
    font-size: 1.3rem;
  }
  
  .info-item {
    padding: 10px;
  }
  
  .newsletter-text h2 {
    font-size: 1.6rem;
  }
  
  .newsletter-input,
  .newsletter-btn {
    height: 42px;
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .placeholder-image {
    font-size: 1.8rem;
  }
  
  .btn,
  .tool-btn,
  .resource-btn,
  .download-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .timeline-marker {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .services-hero {
    padding: 100px 15px 60px;
    height: 90vh;
    min-height: 500px;
    margin-top: -30px;
  }
  .services-hero-text h1 {
    font-size: 2rem;
  }
  
  .services-hero-text p {
    font-size: 1.3rem;
  }
  
  
  
  .services-hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 50px;
    width: 320px;
  }

  .resources-hero .hero-content h1{
    font-size: 2rem;
  }
  .resources-hero .hero-content p{
    font-size: 1.2rem;
  }

  .resources-hero .hero-stats .stat-item{
  margin-left: -25px;
    height: 60px;
    width: 320px;
  }
.resources-hero .stat-number {
  margin-bottom: -5px;
  font-size: 1.9rem;
}

.portfolio-hero .stats-grid .stat-item{
    height: 60px;
    width: 320px;
}
.portfolio-hero .stat-item h3{
  margin-top: -15px;
  margin-bottom: -10px;
  font-size: 1.7rem;
}
.portfolio-hero .stat-item p{
font-size: 0.95rem;
}

.contact-hero {
  height: 45vh;
}
.contact-hero .hero-content h1{
  font-size: 2rem;
margin-top: 60px;
}

.contact-hero .hero-content p{
  font-size: 1.3rem;
}
}
/* Tiny Mobile (360px and below) */
@media (max-width: 359px) {
  html {
    font-size: 12px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .founder-img {
    width: 140px;
    height: 140px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Landscape Mode (Height-based) */
@media (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
    overflow-y: auto;
  }
  
  .about-hero {
    min-height: 100vh;
    height: auto;
    padding: 100px 20px 60px;
    
  }
  
  .about-hero .hero-content {
    padding-top: 10px;
  }
  
  .hero-stats {
    margin-top: var(--spacing-md);
  }
  
  .services-hero {
    min-height: 100vh;
    height: 100vh;
    padding: 150px 20px 60px;
  }
  
  .services-hero .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .services-hero-text h1 {
    font-size: 1.8rem !important;
  }
  
  .services-hero-text p {
    font-size: 1.1rem;
  }
  
  .hero-content .hero-stats .stat {
    height: 50px;
    width: 350px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hamburger,
  .search-container,
  .login-btn,
  .hero-indicators,
  .scroll-indicator,
  .newsletter,
  .footer,
  .modal,
  .chat-layout,
  .quick-actions-grid {
    display: none !important;
  }
  
  .service-card,
  .testimonial-card,
  .portfolio-card,
  .resource-item,
  .download-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #EDEDED;
    page-break-inside: avoid;
  }
  
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}