* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #03055B;
}

.logo span {
    color: #03055B;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a.active {
    color: #007bff;
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
}

.btn-outline {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background: #0069d9;
    border-color: #0069d9;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.hero {
    background-image: url(img/hero_transcpr.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    padding: 150px 0 100px;
    text-align: left;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 5, 91, 0.85), rgba(0, 123, 255, 0.75));
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 0 40px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-btn {
    align-self: flex-end;
    font-size: 24px;
    margin-bottom: 30px;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.mobile-menu a.active {
    color: #007bff;
    font-weight: 700;
}

.mobile-menu .btn {
    margin: 20px 0 0;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

@media (max-width: 992px) {
    .nav-links, .nav-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 200px;
        text-align: center;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .header-container {
        gap: 40px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #03055B;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

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

.feature-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #03055B;
}

.feature-card p {
    color: #6c757d;
}

/* Portfolio Preview Section */
.portfolio-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 5, 91, 0.85), rgba(0, 123, 255, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s;
    color: #fff;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
}

.portfolio-overlay .btn {
    margin-left: 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 1rem;
    background-color: #f9f9f9; /* or any background */
    text-align: center;
}

.stat {
    flex: 1 1 150px;
    min-width: 120px;
}

.stat .number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #007BFF; /* primary color */
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

/* Responsive layout */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}


.intro-txt{
    transform: translateX(80px);
    margin-top: 60px;
}
.intro-txt p{
    margin-top: -20px;
    font-size: 20px;
}
.intro-txt h1{
    font-size: 70px;
}

.intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
}

.intro-box {
    flex: 1;
    max-width: 500px;
    margin: 20px;
    text-align: left;
}

.intro h2 {
    color: #03055B;
    margin-bottom: 10px;
}

.intro p {
    color: #333;
    margin-bottom: 20px;
}

.intro button {
    background-color: #007BFF;
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.intro button:hover {
    background-color: blue;
}

.cta-box {
    background-color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    max-width: 900px;
    margin: 3rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }
}
.clients-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
}

.clients-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.clients-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-slider {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scrollClients 30s linear infinite;
    width: fit-content;
}

.client img {
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client img:hover {
    filter: grayscale(0%);
}

/* Animation */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .clients-slider {
        gap: 2rem;
    }

    .client img {
        height: 70px;
    }
}



    

@media (max-width: 768px) {
    .intro-txt{
        transform: translateX(0px);
        margin-top: 60px;
    }
    .intro-txt p{
        margin-top: -20px;
        font-size: 10px;
    }
    .intro-txt h1{
        font-size: 40px;
    }
    
    .img{
        display: none;
    }
    .intro{
        display: block;
    }
    .intro-box{
        max-width: 100%;
        margin: 0;
    }
    .footer-container {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.header-container {
    gap: 40px;
    padding: 20px;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 576px) {
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
}

/*foote*/
.content {
    flex: 1;
    padding: 20px;
    background-color: #f5f5f5;
}

.footer {
    background-color: darkblue;
    color: white;
    padding: 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0069d9;
    transform: translateY(-3px);
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.quick-links a i {
    margin-right: 8px;
    color: #0069d9;
    font-size: 12px;
}

.quick-links a:hover {
    color: #007bff;
}



.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}

/* about page*/
.about-hero {
    background-image: url('img/intro_transcpr.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    padding: 80px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 15vh;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(3, 5, 91, 0.85), rgba(0, 123, 255, 0.75));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-hero h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 20px;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 0px;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Mission Section */
.mission-container {
  display: block;
  text-align: left;
}

.mission-text {
  max-width: 100%;
  margin: 0 auto;
}

.mission-text h2 {
  font-size: 2.2rem;
  color: #03055B;
  margin-bottom: 20px;
  font-weight: 700;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

/* Remove Mission Image Styling */
.mission-image {
  display: none;
}

/* Values Section */
#values {
  background-color: transparent;
  color: #03055B;
}

#values .section-title,
#values h3 {
  color: #03055B;
}

#values .section-subtitle {
  color: #555;
}

.values-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}

.value-card {
  background-color: rgba(3, 5, 91, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.value-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

/* Section Wrapper */
#team {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  font-size: 2.5rem;
  color: #03055B;
}
.section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: auto;
}

/* Flex Grid */
.team-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 0;
}

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

/* Image */
.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Info Block */
.team-info {
  padding: 20px;
  flex-grow: 1;
}

.team-info h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #03055B;
}

.team-role {
  font-weight: 600;
  color: #007bff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .team-grid {
    justify-content: flex-start;
    padding: 20px 10px;
  }

  .team-card {
    width: 260px;
  }

  .team-info {
    padding: 15px;
  }

  .team-desc {
    font-size: 0.9rem;
  }
}

/* Story Section */
.story-container {
  display: block;
}

.story-text {
  max-width: 100%;
}

.story-text h2 {
  font-size: 2.2rem;
  color: #03055B;
  margin-bottom: 20px;
  font-weight: 700;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.story-image-grid {
  display: none;
}

/* Milestones */
.story-milestones {
  margin-top: 40px;
}

.milestone {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 40px;
  bottom: -30px;
  width: 2px;
  background-color: #d3d3d3;
}

.milestone:last-child::before {
  display: none;
}

.milestone-year {
  background-color: #007bff;
  color: white;
  width: 65px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.milestone-content {
  flex: 1;
}

.milestone-content h4 {
  margin-bottom: 5px;
  color: #03055B;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-flex{
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  h2,
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 16px;
    }
}


/* services page*/
.services-hero {
    background-image: url('img/about-her0\ \(1\)_transcpr.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    padding: 80px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 15vh;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(3, 5, 91, 0.85), rgba(0, 123, 255, 0.75));
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.services-hero h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.services-hero h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 20px;
}

.services-hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 0px;
}

.services-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 576px) {
    .services {
        padding: 120px 0 80px;
    }

    .services h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .services p {
        font-size: 16px;
    }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background-color: #f4f7ff;
}

.services-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #03055B;
  font-weight: 700;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  display: inline-block;
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.service-icon {
  font-size: 36px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 20px;
  color: #555;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-flex {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  h2,
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Portfolio Section */
.portfolio-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #03055B;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #007bff;
}

.section-header p {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Portfolio Flex Container */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  width: 300px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

/* Overlay Content */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 5, 91, 0.85), rgba(0, 123, 255, 0.75));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #fff;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
}

.portfolio-overlay .cta-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  color: #007bff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.portfolio-overlay .cta-button:hover {
  background-color: #007bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
  .portfolio-grid {
      gap: 20px;
  }

  .portfolio-item {
      width: 100%;
      height: 200px;
  }

  .portfolio-overlay h3 {
      font-size: 20px;
  }

  .portfolio-overlay p {
      font-size: 14px;
  }
}



.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

/* Contact Section */
.contact-contents {
  padding: 60px 20px;
  background-color: #f4f7ff;
}

.contact-contents .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-contents h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #03055B;
  margin-bottom: 20px;
  font-weight: 700;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  display: inline-block;
}

.contact-contents p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #555;
}

.contact-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-inf,
.contact-forms {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-inf div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #03055B;
}

.contact-inf i {
  margin-right: 10px;
  color: #007bff;
  font-size: 1.2rem;
}

.contact-forms input,
.contact-forms textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-forms button {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-forms button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-flex {
    flex-direction: column;
    align-items: center;
  }

  .contact-detail {
    flex-direction: column;
  }
}
  
/* Adding animations to existing CSS */

/* Keyframes Definitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInFromLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideInFromRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
  }
  
  /* General Animation Styles */
  body {
    animation: fadeIn 1s ease-out;
  }
  
  .header-container {
    animation: slideInFromTop 0.8s ease-out;
  }
  
  .logo {
    position: relative;
    animation: pulse 3s infinite ease-in-out;
  }
  
  .nav-links li {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
  }
  
  .nav-links li:nth-child(1) { animation-delay: 0.2s; }
  .nav-links li:nth-child(2) { animation-delay: 0.4s; }
  .nav-links li:nth-child(3) { animation-delay: 0.6s; }
  .nav-links li:nth-child(4) { animation-delay: 0.8s; }
  
  /* Enhanced Nav Links Hover Effect */
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::before {
    width: 100%;
  }
  
  /* Button Hover Animations */
  .btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
    z-index: -1;
  }
  
  .btn:hover:before {
    left: 100%;
  }
  
  .btn-primary:hover, .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Hero Section Animations */
  .hero {
    position: relative;
    overflow: hidden;
  }
  
  .hero h1 {
    animation: slideInFromLeft 1s ease-out 0.3s both;
  }
  
  .hero h2 {
    animation: slideInFromLeft 1s ease-out 0.6s both;
  }
  
  .hero p {
    animation: slideInFromLeft 1s ease-out 0.9s both;
  }
  
  .hero-buttons {
    animation: fadeIn 1s ease-out 1.2s both;
  }
  
  /* Feature Cards Animation */
  .feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    animation: fadeIn 0.8s ease-out;
  }
  
  .feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    animation: float 3s infinite ease-in-out;
  }
  
  /* Portfolio Items Animation */
  .portfolio-item {
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
  }
  
  .portfolio-item img {
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .portfolio-overlay {
    transition: opacity 0.5s ease;
  }
  
  .portfolio-item:hover img {
    transform: scale(1.15);
  }
  
  .portfolio-item:hover .portfolio-overlay {
    animation: fadeIn 0.5s ease-out;
  }
  
  /* Stats Counter Animation */
  .stat .number {
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
    position: relative;
  }
  
  .stat .number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #007BFF;
    opacity: 0.7;
  }
  
  /* Intro Section Animation */
  .intro-txt {
    animation: slideInFromLeft 1s ease-out;
  }
  
  .intro-box {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }
  
  .intro-box:nth-child(1) { animation-delay: 0.3s; }
  .intro-box:nth-child(2) { animation-delay: 0.6s; }
  
  .intro button {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .intro button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* CTA Box Animation */
  .cta-box {
    animation: fadeIn 1s ease-out;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
  }
  
  /* Clients Slider Enhanced Animation */
  .clients-slider {
    animation: scrollClients 30s linear infinite;
  }
  
  .clients-slider:hover {
    animation-play-state: paused;
  }
  
  .client {
    transition: transform 0.3s ease;
  }
  
  .client:hover {
    transform: scale(1.1);
  }
  
  .client img {
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .client img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
  }
  
  /* Footer Animation */
  .footer-section {
    animation: fadeIn 0.8s ease-out;
  }
  
  .footer-section h3::after {
    animation: shimmer 3s infinite linear;
    background: linear-gradient(to right, #007bff, #0069d9, #007bff);
    background-size: 200% 100%;
  }
  
  .social-links a {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .social-links a:hover {
    transform: rotate(360deg) scale(1.2);
  }
  
  .quick-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  .quick-links a:hover {
    transform: translateX(8px);
  }
  
  /* Services Page Animations */
  .service-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    animation: fadeIn 0.8s ease-out;
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    animation: float 3s infinite ease-in-out;
  }
  
  /* Contact Form Animation */
  .contact-inf, 
  .contact-forms {
    animation: slideInFromBottom 0.8s ease-out;
  }
  
  .contact-forms input,
  .contact-forms textarea {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .contact-forms input:focus,
  .contact-forms textarea:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
  }
  
  .contact-forms button {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .contact-forms button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
  }
  
  /* Mobile Menu Animation */
  .mobile-menu {
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .mobile-menu.active {
    animation: slideInFromRight 0.4s forwards;
  }
  
  .overlay {
    transition: opacity 0.3s ease;
  }
  
  /* About Hero Animation */
  .about-hero h1,
  .about-hero h2,
  .about-hero p {
    animation: slideInFromLeft 1s ease-out 0.3s both;
  }
  
  /* Responsive Animations */
  @media (max-width: 992px) {
    .hamburger {
      animation: pulse 2s infinite;
    }
  }
  
  /* Add animation for section headers */
  .section-header h2::after {
    animation: shimmer 3s infinite linear;
    background: linear-gradient(to right, #007bff, #0069d9, #007bff);
    background-size: 200% 100%;
  }
  
  /* Animate scrolling elements with Intersection Observer */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Animate section headers when they enter viewport */
  .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .section-header.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
/* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Increased gap for more spacing */
}

/* Floating Button Styling */
.floating-button {
  background-color: #25d366; /* WhatsApp color */
  color: #fff;
  border-radius: 50%; /* Makes the button round */
  padding: 20px; /* Adjust padding for a larger circle */
  font-size: 30px; /* Bigger icon size */
  width: 60px; /* Set width to make it round */
  height: 60px; /* Set height to make it round */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-button.whatsapp {
  background-color: #25d366; /* WhatsApp green */
}

.floating-button.email {
  background-color: #007bff; /* Blue for Email */
}

/* Hover effect */
.floating-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.floating-button i {
  font-size: 28px; /* Adjust font size of icons */
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .floating-button {
    width: 50px;
    height: 50px;
    padding: 15px; /* Adjust for smaller screens */
  }

  .floating-button i {
    font-size: 24px; /* Adjust icon size for smaller screens */
  }
}
 