
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  margin: 0;
  background-color: #e9feff;
  color: #0F172A;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
p {
  color: #64748B;
  line-height: 1.6;
}
a {
  color: #0F172A;
  text-decoration: none;
  margin: 0 10px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #DFF9F5;
  border-bottom:3px solid #21A5AB;
}
.typew {
  font-size:35px!important;
  overflow: hidden; 
  border-right: .15em solid orange; 
  white-space: nowrap; 
  margin: 0 auto; 
  letter-spacing: .15em; 
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}
.hoBGim{
	position:absolute;
	width:100%;
	max-width:300px;
	height:auto;
	right:1px;
	top:5px;
	z-index:-1;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}
.logo {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  flex-direction: column;
}
.logo .blue { color: #1D4ED8; }
.logo .navy { color: #0F172A; }
.logo .accent { color: #5EEAD4; }
.hero {
  padding: 80px 5%;
  background: #C5F7F2;
background: linear-gradient(90deg,rgba(197, 247, 242, 1) 0%, rgba(222, 253, 250, 1) 35%, rgba(157, 240, 237, 1) 100%);
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 32px;
}
.hero2 {
  padding: 80px 20%;
  background: #21a5ab;
  color:#fff!important;
}
.hero2 p{
  color:#fff!important;
}
.hero h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.hero2 h2 {
  font-size: 35px;
  margin-bottom: 16px;
  color:#fff;
}
.hero3 h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.hero2, .hero3 p {
  font-size: 18px;

}
.hero3 {
  padding-top:50px;padding-bottom:30px;background-color: #f9f9f9; 
}
.hero4 {
  padding: 80px 5%;
  background: #f9fffe;
}
.primary-btn {
  background: #5EEAD4;
  background: linear-gradient(90deg,rgba(94, 234, 212, 1) 23%, rgba(29, 78, 216, 1) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.primary-btn:hover {
  background: #5EEAD4;
}
.fa{font-size:50px!important;
	color: #5EEAD4;
    display: block;
    background: -webkit-linear-gradient(#5EEAD4, #1D4ED8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    padding-bottom: 60px;
	padding-top: 60px;
    background-color: #f9f9f9; 
}

.card {
    background: #ffffff;
    border-radius: 15px; 
    padding: 30px;
    flex: 1 1 300px; 
    max-width: 300px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-bottom: 4px solid #21A5AB; 
}

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

.card i {
    font-size: 40px;
    color: #21A5AB;
    margin-bottom: 20px;
}

.card h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tjus {
    text-align: left;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card p b {
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.card p:last-child {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}


.fa{
	margin-bottom:10px;
	}
nav a{
	font-size:15px; padding:15px 35px 15px 35px; background:#21a5ab; color:#fff; border-radius:0 20px 0 20px;
}
nav a:hover{
	background:#caf1eb; 
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
		position:absolute;
		right:30px;
		top:35px;
    }

    .navbar nav {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 1000;
		background:#21a5ab;
    }

    .navbar nav.active {
        left: 0;
    }

    .navbar nav a {
        display: block;
        padding: 15px;
        margin: 0;
    }

    .hide-mobile {
        display: none;
    }
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #21A5AB; 
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    border: 2px solid transparent;
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.read-more-btn:hover {
    background-color: #ffffff;
    color: #21A5AB;
    border-color: #21A5AB;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    transform: translateY(-3px);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.read-more-btn:active {
    transform: translateY(-1px);
}
.why-choose-v2 {
    padding: 100px 20px;
    background-color: #C5F7F2;
    font-family: 'Inter', sans-serif;
	
}

.why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-text-col {
    flex: 1;
}

.section-title-left {
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    color: #222;
    margin-bottom: 15px;
    text-align: left;
}

.section-subtitle-left {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.why-list-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    transform: translateX(10px);
}

.icon-box-small {
    width: 50px;
    height: 50px;
    background: #e7f1ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-small i {
    font-size: 20px;
    color: #21A5AB;
}

.why-item-content h4 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.4;
}

.why-item-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.why-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.why-main-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background-color: #21A5AB;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,123,255,0.3);
    border: 5px solid #fff;
    data-aos="zoom-in";
    data-aos-delay="600";
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1;
}

.experience-badge p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .why-container {
        flex-direction: column-reverse;
        gap: 60px;
        text-align: center;
    }
    
    .section-title-left, 
    .section-subtitle-left {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .why-main-img {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .why-choose-v2 {
        padding: 60px 15px;
    }
    
    .section-title-left {
        font-size: 2rem;
    }
    
    .why-list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    
    .experience-badge {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
}


.contact-section {
    padding: 80px 5%;
    background-color: #f8faff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-box, .contact-info-box {
    flex: 1;
    min-width: 320px;
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #21A5AB;
    box-shadow: 0 10px 25px rgba(0,123,255,0.1);
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #eef5ff;
    color: #21A5AB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.info-content span {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 3px;
}

.info-content h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #21A5AB;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .info-card:hover {
        transform: translateY(-5px);
    }
}

.footer {
    background-color: #21a5ab; 
    color: #fff;
    padding: 70px 0 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); 
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #eee;
    height: 2px;
    width: 40px;
}

.footer-col p {
    font-size: 15px;
    line-height: 24px;
	color:#fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #000;
    padding-left: 8px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: rgba(255,255,255,0.1);
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    color: #111;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #eee;
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-item i {
    color: #fff;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
	
}

.footer-bottom p {
    font-size: 13px;color:#fff;
}

@media (max-width: 768px) {
    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
}
@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 10px; }

    .cards {
        padding: 20px 10px;
        gap: 20px;
    }

    .card {
        flex: 1 1 100%; 
        max-width: 100%;
        padding: 20px;
    }
    
    .card h4 {
        font-size: 20px;
    }
}
@media (max-width: 620px) {
	.typew {
	font-size:25px!important;}
}