/* Colors */
:root {
    --primary-color: #304C68;
    --secondary-color: #637787;
    --background-color: #0d141c;
    --text-color: #FCF9E2;
    --highlight-color: #1a2228;
    --active-color: #8da3ba;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to right, #253a4f, #101921, #101921);
    color: var(--text-color);
    line-height: 1.6;
}

body strong {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 20px;
}

body a {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-size: 17px;
    text-decoration: none;
}

body h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-size: 10%;
}


hr {
    color: var(--secondary-color);
}

section {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 1200px;
}

sectionn {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto;
    padding: 1rem;
}

.about-left, .about-right {
    flex: 1;
    padding: 1rem;
}

.about-right img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.subtitle {
  color: var(--secondary-color);
  font-size: 1rem;
}

.subtitlee {
    font-size: 1.2rem;
    color: var(--hover-color);
    text-transform: uppercase;
    font-weight: 550;
}

.title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
}

.tabs, .services, .key-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab, .service, .key-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.iconn {
    font-size: 4rem;
    color: var(--primary-color);
}

.cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.7),
        -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.btn:hover {
    background-color: var(--secondary-color);
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.9),
        -6px -6px 12px rgba(255, 255, 255, 0.1);
}

.call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.points li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-weight: bold;
}

.points i {
    color: var(--primary-color);
    font-size: 25px;
}

.image-group {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 10px;
}

.highlight {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-square {
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 8px;
    right: 16px;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.overlay-image {
    position: absolute;
    top: 15%;
    left: 7%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: 250px;
    border-radius: 5px;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.wide-image {
    width: 80%;
    align: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.long-description {
    text-align: center;
    margin-bottom: 2rem;
}

.key-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.key-point {
    text-align: center;
    background-color: var(--highlight-color);
    padding: 1rem;
    border-radius: 5px;
    flex: 1;
}

.highlight-image {
    position: relative;
}

.highlight-image img {
    
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/*Tabs////////////////*/

/* Style the tab */
.tabb {
  overflow: hidden;
  color: #ffffff;
  background-color: inherit;
  width: 100%;
  text-align: center;
}

/* Style the buttons that are used to open the tab content */
.tabb button {
  background-color: inherit;
  float: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  outline: none;
  color: var(--text-color);
}

/* Change background color of buttons on hover */
.tabb button:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}

/* Create an active/current tablink class */
.tabb button.active {
  background-color: var(--primary-color);
  color: var(--background-color);
  font-size: 0.95rem;
}

/* Style the tab content */
.tabcontent {
  margin: auto;
  text-align: center;
  display: none;
  width: 80%;
  padding-top: 25px;
  border-top: none;
}

.tabcontentt {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
    

.linked-icon {
    font-size: 25px;
    transition: 0.3s;
    color: var(--primary-color);
    text-decoration: none;
}

.linked-icon p:hover {
    font-size: 26px;
    color: var(--secondary-color);
}

.linked-icon span {
    font-size: 21px;
    transition: 0.3s;
    color: var(--primary-color);
}

.linked-icon span:hover {
    font-size: 22px;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        flex-direction: column;
        margin: 1rem;
        padding: 0.5rem;
    }

    .about-left, .about-right {
        padding: 0.5rem;
    }

    .key-points {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .overlay-image {
        width: 50%;
    }
}


/* Team Section Styles */
.team {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.team-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-description {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    background: var(--highlight-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.9rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    color: var(--secondary-color);
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.team-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.team-left {
    flex: 1;
    padding-right: 2rem;
}

.team-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-right .team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--highlight-color);
    padding: 1rem;
    border-radius: 10px;
}

.team-right .team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .team-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-left {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
}


.overlayy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.overlay-icon {
    color: white;
    padding: 5px;
    font-size: 21px;
}

.image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-wrapper:hover .overlayy {
    opacity: 1;
}


/* Service Section Styles */
.service {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
}

.service-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    background: var(--highlight-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow:
        inset 4px 4px 10px rgba(0,0,0,0.1),
        inset -4px -4px 10px rgba(255,255,255,0.01);
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: background-color 0.3s, color 0.3s;
}

.service-item:hover {
    background: var(--primary-color);
    color: var(--highlight-color);
}

.service-item:hover .service-icon,
.service-item:hover .service-name,
.service-item:hover .service-info {
    color: var(--highlight-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.service-name {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-info {
    font-size: 1rem;
    color: var(--text-color);
}

.service-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-left {
    flex: 1;
    padding-right: 2rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-list i {
    color: var(--primary-color);
}

.service-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--highlight-color);
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.service-box:hover {
    background: var(--primary-color);
    color: var(--highlight-color);
}

.service-box:hover .service-icon,
.service-box:hover .service-name,
.service-box:hover .service-info {
    color: var(--highlight-color);
}

.service-box .service-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .service-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-left {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
}


/* Top Bar Styles */
@media (min-width: 768px) {
	.top-bar {
   	   display: flex;
  	   justify-content: space-between;
  	   align-items: center;
 	   padding: 0.5rem 2rem;
 	   background-color: var(--primary-color);
	   color: white;
	   font-size: 0.9rem;
	}
	
	.top-bar-left span, .top-bar-2 span {
	    margin-right: 1.5rem;
	}
	
	.top-bar-right a {
	    color: white;
	    margin-left: 1rem;
	    font-size: 1.2rem;
	    transition: color 0.3s;
	}
	
	.top-bar-right a:hover {
	    color: var(--active-color);
	}
	
	.top-bar-2 {
	    justify-content: center;
	    gap: 2rem;
	}
}

@media (max-width: 768px) {
	.top-bar {
	    display: none;
	}
}
	
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-size: 2.3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: "Poppins", serif;
    text-decoration: none;
}

body span {
    color: var(--text-color);
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navigation Bar 2 */
.navbar-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
}

.navbar-2 .nav-links a {
    color: white;
    font-weight: bold;
}

.navbar-2 .nav-links a:hover {
    color: var(--active-color);
    font-weight: bold;
}

.navbar-2 .btn-contact {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-2 .btn-contact:hover {
    color: var(--highlight-color);
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: var(--background-color);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        width: 200px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
	color: #ffffff;
    }
    .logo a {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-color);
        font-family: "Poppins", serif;
        text-decoration: none;
    }
}

/* Pricing Section Styles */
.pricing {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('img/carousel-2.jpg') no-repeat center center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--highlight-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow:
        inset 4px 4px 10px rgba(0,0,0,0.1),
        inset -4px -4px 10px rgba(255,255,255,0.01);
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .pricing-card {
	height: 60%;
    }
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background: var(--primary-color);
    color: var(--highlight-color);
    border: 2px solid var(--active-color);
}

.pricing-card:hover .plan-price,
.pricing-card:hover .plan-price small,
.pricing-card:hover .plan-features li,
.pricing-card:hover .plan-name {
    color: var(--highlight-color);
}

.pricing-card:hover .btn {
    background-color: var(--highlight-color);
    color: var(--text-color);
}

.pricing-card:hover .plan-features i,
.pricing-card:hover .subtitle {
    color: var(--highlight-color);
}

.pricing-card.popular {
    border: 4px solid;
    border-image: linear-gradient(to right, #253a4f, #101921, #101921) 1;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.plan-price small {
    font-size: 1rem;
    color: var(--primary-color);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.plan-features i {
    color: var(--primary-color);
}


/* Pricing Section 2 */
.pricing-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-left {
    flex: 1;
    padding-right: 2rem;
}

.pricing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.pricing-right .pricing-card {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.pricing-right .pricing-card img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .pricing-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .pricing-left {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
}

.point-negative {
    color: #ab1a1a;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.carousel h2 {
    font-size: 1.8rem;
}

.carousel p {
    font-size: 21px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 0.5s;
}

.carousel-slide.active {
    display: block;
    animation: fadeInn 1s;
}

@keyframes fadeInn {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.carousel-slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
    text-align: center;
    background: rgba(0, 0, 0, 0);
    border-radius: 5px;
    width: 90%;
}

.carousel-caption img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1200px;
}

.carousel-prev, .carousel-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 30px;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: darken(var(--primary-color), 10%);
}


/* Typewriter text */
.typewriter {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
  min-height: 1.5em; /* prevents layout shift */
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #c8e6c9;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Section Styles */
.footer {
    width: auto;
    padding: 2rem;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    text-align: center;
    overflow: hidden;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    overflow: hidden;
}

/* Footer 1: Simple Footer */
.footer-1 p {
    font-size: 1rem;
}

/* Footer 2: Footer with Links */
.footer-2 .footer-left h3 {
    font-size: 2rem;
    color: var(--text-color);
}

.footer-2 .footer-left b {
    color: var(--active-color);
}

.footer-2 .footer-middle h3 {
    font-size: 2rem;
    color: var(--text-color);
}

.footer-2 .footer-right h3 {
    font-size: 2rem;
    color: var(--text-color);
}

.footer-2 .footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-2 .footer-middle ul li {
    margin: 0.5rem 0;
}

.footer-2 .footer-middle ul li a {
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
}

.footer-2 .footer-middle ul li a:hover {
    color: var(--text-color);
    letter-spacing: 2px;
}

.footer-2 .social-icons a {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-2 .social-icons a:hover {
    color: var(--text-color);
}

/* Footer 3: Footer with Contact Info */
.footer-3 .footer-contact h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-3 .footer-contact p {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.footer-2 .footer-contact i {
    color: var(--hover-color);
}

.footer-3 .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-3 .footer-newsletter input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.footer-3 .footer-newsletter button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-3 .footer-newsletter button:hover {
    background: darken(var(--secondary-color), 10%);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-3 .footer-contact p {
        justify-content: center;
    }
}


/* Gallery Section Styles */
.gallery {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.gallery-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery 1: Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Gallery 2: Masonry Layout */
.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.gallery-masonry img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    break-inside: avoid;
    transition: transform 0.3s;
}

.gallery-masonry img:hover {
    transform: scale(1.01);
}

/* Gallery 3: Lightbox Gallery */
.gallery-lightbox {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-lightbox img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-lightbox img:hover {
    transform: scale(1.1);
}

.lightbox-trigger {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 2;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Testimonials */
.testimonial {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    max-width: 800px;
    position: relative;
    align-items: center;
}

.testimonial-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: opacity 0.5s;
    align-items: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.testimonial-prev, .testimonial-next {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    width: 50px;
}

@media (max-width: 768px) {
    .testimonial-prev, .testimonial-next {
	display: none;
    }
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--secondary-color);
}

.testimonial-review {
    padding-left: 30px;
    align-items: center;
    justify-content: center;
    text-align: left;
}

/* Blog Grid Section Styles */
.blog-grid {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    max-width: 1200px;
}

.blog-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.blog-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-item {
    background: var(--highlight-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 30%;
    min-width: 300px;
}

.blog-item:hover {
    transform: scale(1.05);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-heading {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.blog-heading a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
    font-size: 27px;
}

.blog-heading a:hover {
    color: var(--secondary-color);
}

.blog-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border-top: 1px solid var(--text-color);
    padding-top: 0.5rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-item {
        width: 100%;
    }
}

.blog-cta {
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
    padding-top: 25px;
}

.blog-cta:hover {
    color: var(--secondary-color);
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--primary-color); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 12px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transition: 0.3s;
}

#myBtn:hover {
  background-color: var(--secondary-color); 
}

.blogpost-image {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  border: 5px solid #ddd;
  border-radius: 12px;
  margin: 2rem auto;
  position: relative;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
}


.gallery-track img {
  width: 300px;
  height: 375px;
  max-height: 600px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
  flex-shrink: 0;
  pointer-events: none;
  padding: 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.problem-solution {
  padding: 4rem 2rem;
  justify-content: center;
}
.problem-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.problem {
  background: var(--background-color);
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  box-shadow:
      inset 4px 4px 10px rgba(0,0,0,0.1),
      inset -4px -4px 10px rgba(255,255,255,0.01);
}

.solution {
  background: var(--text-color);
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  color: var(--background-color);
  scale: 1.05;
  box-shadow:
      inset 4px 4px 10px rgba(255,255,255,0.1),
      inset -4px -4px 10px rgba(0,0,0,0.01);
}

@media (max-width: 768px) {
  /* Stack the problem and solution sections vertically on smaller screens */
  .problem-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem, .solution {
    width: 87%;  /* Ensure they take full width on mobile */
    margin-bottom: 1.5rem;  /* Add space between problem and solution */
  }

  /* Adjust text size for better readability on mobile */
  .problem h3, .solution h3 {
    font-size: 1.4rem;
  }

  .problem ul, .solution ul {
    padding-left: 1rem;  /* Reduce padding on smaller screens */
  }

  /* Reduce section padding for mobile */
  .problem-solution {
    padding: 3rem 1.5rem;
  }

  /* Adjust padding inside cards for mobile */
  .problem, .solution {
    padding: 1.5rem;
  }
}

.problem h3, .solution h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.problem ul, .solution ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.problem-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.problem-btn {
    background-color: var(--highlight-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.problem-btn:hover {
    background-color: var(--primary-color);
}

.solution-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.solution-btn:hover {
    background-color: var(--secondary-color);
}

.contact-section {
  padding: 4rem 2rem;
  color: var(--text-color);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 80%
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-subtitle {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-title {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details i {
  color: var(--primary-color);
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  resize: none;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  justify-content: center;
}

.btn-contact {
  font-family: "Open Sans", sans-serif;
  align-items: center;
  width: 105%;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}