@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
}
:root {
    --color-bg:  #ffffff;
    --color-white: #f2f8fc;
    --color-light: #c9c6c6c7;
    --color-black: #282427;
    --color-text-one: #3f885d;
    --color-text-two: #7870b8;
    /* --color--extra: #f9f4fb */
    --container-width-lg: 87%;
    --container-width-md: 90%;
    --container-width-sm: 94%;

    --transition: all 400ms ease;
}
:root {
            --color-primary: #3f885d;
            --color-secondary: #578e5a;
            --color-light: #f9f4fb;
            --color-dark: #282427;
            --color-gray: #7a7a7a;
            --color-light-gray: #eaeaea;
            --color-white: #ffffff;
            --color-gradient: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        }

body{
    font-family: "raleway", sans-serif;
    color: var(--color-black);
    background-color: var(--color-bg);

}

.container{
    width: var(--container-width-lg);
    margin: 0 auto;
}
.container-two{
    background-color: var(--color-light);
}
.container-three{
  background-color: var(--color-black);
}
section{
    padding: 2rem 0;
}

/* section h2{
    text-align: center;
    margin-bottom: 3rem;
    text-transform: capitalize;
    color: var(--color-primary);
    font-size: 2rem;
} */
a{
    color: var(--color-black);
}
h1,h2,h3,h4,h5{
    line-height: 1.2;
}
h1{
    font-size: 2.4rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.6rem;
}
h4{
    font-size: 1.3rem;
}

a{
    color: var(--color-black);
}

img{
    width: 100%;
    display: block;
    object-fit: cover;
}

/* NAVIGATION BAR */
.header-nav {
    position: fixed;
    width: 100%;
    background-color: #f9f4fb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    color: var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    z-index: 1000;
}

.header-nav .btn-container a {
    color: var(--color-white);
}

.header-left img {
    width: 100px;
}

.links {
    display: flex;
    gap: 2rem;
}

nav .links a {
    font-size: 1rem;
    transition: var(--transition);
    color: #282427;
    position: relative;
}

nav .links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-one);
}

.socials {
    display: flex;
    gap: 1.3rem;
}

.socials a {
    font-size: 1.1rem;
    transition: var(--transition);
    color: #282427;
}

.socials a:hover {
    color: var(--color-text-one);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-black);
}

/* NAVIGATION RESPONSIVENESS */
@media screen and (max-width: 780px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background-color: var(--color-text-one);
        padding: 100px 0 0 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .show-links {
        transform: translateX(0);
    }
    
    .links a {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .socials {
        display: none;
    }
    
    .header-nav .btn-container {
        display: none;
    }
}

.btn-container { 
    background: linear-gradient(to right, #3f885d, #578e5a, #749868, #87996e);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-container:hover {
    filter: brightness(1.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* SCROLL ANIMATIONS START */
.typing {
      font-family: 'Courier New', monospace;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #555;
      width: fit-content;
      animation: typing 4s steps(36, end) forwards, blink 0.75s step-end infinite;
    }

    @keyframes typing {
      from {
        width: 0;
      }
      to {
        width: 36ch;
      }
    }

    @keyframes blink {
      50% {
        border-color: transparent;
      }
    }
.animated-small {

    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideUp 3s ease-out forwards;
}

    @keyframes fadeSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-left{
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlideLeft 2.5s ease-out forwards;
}

    @keyframes fadeSlideLeft {
      to {
        opacity: 1;
        transform: translateX(0);

    }
}
.animated-right{
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlideRight 3s ease-out forwards;
}

    @keyframes fadeSlideRight {
      to {
        opacity: 1;
        transform: translateX(0);

    }
}
/* SCROLL ANIMATION END */

/* HERO CONTAINER START */

.hero-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    height: 100vh;
}
.hero-text{
    width: 50%;

}
.hero-image{
    width: 50%;
}
.hero-text h1{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 580;
}
.hero-text h1 span{
    color: var(--color-text-one);

}
.hero-text p{
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.7rem;
}
.hero-image img{
    width: 700px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.hero-text small{
    font-size: .9rem;
    color: var(--color-text-one);
    display: block;
    margin-bottom: 1.1rem;
}
.animated-small {

      opacity: 0;
      transform: translateY(10px);
      animation: fadeSlideUp 2.5s ease-out forwards;
    }

    @keyframes fadeSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
}
.circle{
    position: absolute;
    width: 80px;
    height: 80px;

    border-radius: 50%;
    background-color: var(--color-text-one);

    top: 46%;
    right: 34%;
    z-index: ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation:  float 2s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.circle img{
    width: 30px;
    display: flex;
    margin: 0 auto;
}
.circle small{
    font-size: .8rem;
    width: 100%;
    text-align: center;
    color: var(--color-white);
}
/* HERO CONTAINER END */


/* INTER SECTION START */

.inter-section{
    margin-top: rem;
}
.inter-title{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 4rem;
}
.inter-title h2{
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-text-one);
    background-color: var(--color-light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-transform: capitalize;
}

.inter-title p{
    width: 50%;
    color: var();
    line-height: 1.8;
}
.inter-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    transition: var(--transition);
}
.inter-card{
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--color-black);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .8);
    transition: .6s;

}
.inter-card img{
    width: 210px;
    margin-right: 1.5rem;
}

.inter-card-text{
    line-height: 1.5;
}
.inter-card-text h4{
    margin-bottom: .8rem ;
    font-size: 1.6rem;
    text-transform: capitalize;
}
.inter-btn{
    display: inline-block;
}

.inter-card:nth-child(2){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.inter-card:nth-child(2) img{
    border-radius: 20px;
}
.inter-card:nth-child(2):hover img{
    border: 3px solid var(--color-black);
}
.inter-card:nth-child(2):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}
.inter-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    transition: var(--transition);
}
/* INTER SECTION END */

/* CAROUSEL SECTION START */
.carousel-section {
  margin-top: 8rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  text-align: center;
  background-color: var(--color-light);
  padding: 2rem;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 90px;
  margin: 0 auto 1rem;
}

.carousel-caption h3 {
  font-size: 1.5rem;
  color: var(--color-text-one);
  margin-bottom: 0.5rem;
}

.carousel-caption p {
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg);
  border: 2px solid var(--color-text-one);
  color: var(--color-text-one);

  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--color-light);
  border: 2px solid white;
  color: white;

}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* CAROUSEL SECTION END */


/* SERVICES SECTION START */
.service-section{
    margin-top: 8rem;
    position: relative;
}
.service-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

}
.service-text{
    width: 50%;
}
.service-image{
    width: 50%;
}
.service-image img{
    width: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.service-text{
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.text{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.text small{
    font-size: 1rem;

}
.text i{
    font-size: 1.1rem;
    border: 1.6px solid var(--color-black);
    padding: 9px;
    border-radius: 50%;
    color: var(--color-text-one);
    background-color: var(--color-light);
}

.circle2{
    position: absolute;
    top: 47%;
    left: 38%;
    background-color: #b066ed;
}
.service-button{
    display:block;
}
/* SERVICES SECTION END */

/* BENTO GRID START */
.bento-section{
    margin-top: 8rem;
    /* padding: 4rem 0; */

}

.box{

    /* height: 100%; */
    /* padding: 20px; */
    /* border-radius: 8px; */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .9);


    padding: 25px;
    border-radius: 16px;
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}
.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bento-container{

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
    /* margin-left: 6rem; */
    margin-top: 2rem;
    grid-template-areas:
    "box1 box2 box4 box4"
    "box1 box7 box7 box5"
    "box9 box9 box8 box5";
}
.box1{

    background: url('images/candid.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 33;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: multiply;

    color: #f2f8fc;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.box1 h4{
    font-size: 1.8rem;
    z-index: 0;
    /* text-align: center; */
    margin-top: 10rem;

}
.box1 small{
    font-size: 1rem;
    /* text-align: center; */
    display: block;
    margin-top: 10px;
    opacity: .8;
}
.box1:hover{
    background-color: rgba(0,0,0,0);
    color:#1a1819;
    transition: var(--transition);
}

.box2{
    background: linear-gradient(135deg, #0A0A0F 0%, #1A1A22 30%, #2A2A35 60%, #1A1A22 90%, #0A0A0F 100%);
    color: var(--color-white);
}

.box2-top{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    /* border: 1px solid var(--color-white) ; */
    color: var(--color-light);
    border-radius: 20px;
}
.box2-top h4{
    font-size: .7rem;
    color: var(--color-light);
}
.box2-mid{
    color: var(--color-white);
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}
.box2-mid .mid-text{
    display: flex;
    align-items: start;
    gap: 10px;
}
.box2-mid .mid-text i{
    font-size: .7rem;
    border: 1px solid var(--color-white);
    padding: 3px;
    border-radius: 50%;
}
.box2-mid h4{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    /* color: var(--color-light); */
}
.box2-mid small{
    font-size: .6rem;
    line-height: 1.5;
}
 .box9{
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 50%), /* Subtle top highlight */
                linear-gradient(145deg, #08080C 0%, #121218 40%, #1B1B25 70%, #0F0F16 100%); /* Main dark gradient */
    background-size: 100% 100%; /* Ensure backgrounds cover the full area */
    background-repeat: no-repeat;
}
.box4-top{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    /* border: 1px solid var(--color-white) ; */
    color: #1A1A22;
    border-radius: 20px;
}
.box4-top h4{
    font-size: 1rem;
    color: #1A1A22;
}
.box4-mid{
    color: #1A1A22;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    text-align: start;
}
.box4-mid .mid-text{
    display: flex;
    align-items: start;
    gap: 10px;
}
.box4-mid .mid-text i{
    font-size: .7rem;
    border: 1px solid var(--color-black);
    padding: 3px;
    border-radius: 50%;
}
.box4-mid h4{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    /* color: var(--color-light); */
}
.box4-mid small{
    font-size: .8rem;
    line-height: 1.5;
}


.box5{
      /* background: linear-gradient(135deg, #0A0A0F 0%, #1A1A22 30%, #2A2A35 60%, #1A1A22 90%, #0A0A0F 100%); */
    background: url('images/candid2.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    /* background-color: rgba(0,0,0,0.5); */
    opacity: 0.93;
    color: var(--color-white);
    transition: var(--transition);
}
.box5:hover{
    opacity: 1;
    color: var(--color-light);
    transition: background-color 0.3s ease;
}


.box5-top{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    /* border: 1px solid var(--color-white) ; */
    color: var(--color-light);
    border-radius: 20px;
}
.box5-top h4{
    font-size: .9rem;
    color: var(--color-light);
}
.box5-mid{
    color: var(--color-white);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}
.box5-mid .mid-text{
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 5px 0 0 0;
}
.box5-mid .mid-text i{
    font-size: .8rem;
    border: 1px solid var(--color-white);
    padding: 4px;
    border-radius: 50%;
}
.box5-mid h4{
    font-size: 1rem;
    margin-bottom: 8rem;
    /* color: var(--color-light); */
}
.box5-mid small{
    font-size: .8rem;
    line-height: 1.5;
}

.glassy-panel {
  background: rgba(255, 255, 255, 0.05); /* Very subtle transparent white background */
  border-radius: 15px; /* Rounded corners for a softer look */
  padding: 30px;
  backdrop-filter: blur(10px); /* The magic for the "glassy" blur */
  -webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for definition */
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.2), /* Main shadow for depth */
    inset 0 0 0 1px rgba(255, 255, 255, 0.05); /* Inner border/highlight */
  /* color: white; */
  /* text-align: center; */
}



.box7{
    background: url('images/map.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0,0,0,0.5);
}


.box8-top{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    /* border: 1px solid var(--color-white) ; */
    color: var(--color-black);
    border-radius: 20px;
}
.box8-top h4{
    font-size: .7rem;
    color: var(--color-black);

}
.box8-mid{
    color: var(--color-black);
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    text-align: start;
}
.box8-mid .mid-text{
    display: flex;
    align-items: start;
    gap: 10px;
}
.box8-mid .mid-text i{
    font-size: .7rem;
    border: 1px solid var(--color-black);
    padding: 3px;
    border-radius: 50%;
}
.box8-mid h4{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    /* color: var(--color-light); */
}
.box8-mid small{
    font-size: .6rem;
    line-height: 1.5;
}




.box9-top{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    /* border: 1px solid var(--color-white) ; */
    color: var(--color-light);
    border-radius: 20px;
}
.box9-top h4{
    font-size: 1rem;
    color: var(--color-light);
}
.box9-mid{
    color: var(--color-white);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    text-align: start;
}
.box9-mid .mid-text{
    display: flex;
    align-items: start;
    gap: 10px;
}
.box9-mid .mid-text i{
    font-size: .7rem;
    border: 1px solid var(--color-white);
    padding: 3px;
    border-radius: 50%;
}
.box9-mid h4{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    /* color: var(--color-light); */
}
.box9-mid small{
    font-size: .8rem;
    line-height: 1.5;
}


/* BENTO RESPONSIVENESS */
@media (max-width: 900px) {
    .bento-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 200px);
        grid-template-areas:
            "box1 box2 box4"
            "box1 box7 box7"
            "box9 box9 box5"
            "box8 box8 box5";
    }
}

@media (max-width: 600px) {
    .bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "box1"
            "box2"
            "box4"
            "box7"
            "box5"
            "box9"
            "box8";
    }

    .box {
        min-height: 200px;
        height: auto;
    }
}

/* BENTO GRID END */



/* automation SECTION START */

.automation-section{
    margin-top: 8rem;
}

.automation-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.automation-card{
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--color-black);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .8);
    transition: var(--transition);

}
.automation-card img{
    width: 210px;
    margin-right: 1.5rem;
    border-radius: 20px;
}

.automation-card-text{
    line-height: 1.5;

    small{
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-text-one);
        margin: 1.1rem 0;
    }
}
.automation-card-text h4{
    margin-bottom: .8rem ;
    font-size: 1.6rem;
    text-transform: capitalize;
}
.automation-btn{
    display: inline-block;
}

.automation-card:nth-child(2){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.automation-card:nth-child(2) img{
    border-radius: 20px;
}
.automation-card:nth-child(2):hover img{
    border: 3px solid var(--color-black);
}
.automation-card:nth-child(2):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}

.automation-card:nth-child(3){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.automation-card:nth-child(3) img{
    border-radius: 20px;
}
.automation-card:nth-child(3):hover img{
    border: 3px solid var(--color-black);
}
.automation-card:nth-child(3):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}

.automation-card:nth-child(6){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.automation-card:nth-child(6) img{
    border-radius: 20px;
}
.automation-card:nth-child(6):hover img{
    border: 3px solid var(--color-black);
}
.automation-card:nth-child(6):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}
.automation-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    transition: var(--transition);
}
.auto2{
    background-color: var(--color-bg);
}
.automation-btn{
    margin-top: 2rem;
}
/* automation SECTION END */

/* TESTIMONIAL SECTION START */

.testimonial-section {
  margin-top: 8rem;
}
.grid {
  margin: 0 auto;
  display: grid;
  height: 400px;
  width: 100%;
  /* max-width: 1000px; */
  grid-template-rows: 1fr 1fr 1fr 1fr ;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.grid div {
  height: 100%;
  width: 100%;
  border-radius: 1.25rem;
  transition: var(--transition);
}

.grid div:hover{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    transform: translateY(-10px);
}

/* Default Styles (Mobile First) */
.grid .left-top {
  border: 2px solid var(--color-black);
  background-color: var(--color-bg);
  color: var(--color-black);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .8);
}
.grid .main-top-left {
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-bg);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .8);
}
.grid .right-bottom {
  border: 2px solid var(--color-black);
  background-color: var(--color-bg);
  color: var(--color-black);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .8);

}

/* Tablet Layout */
@media (max-width: 480px) {
  .grid{
    grid-template-columns: 1fr;
  }

}

/* Desktop Layout */
@media (min-width: 720px) {
  .grid {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
  }

  .grid .left-top {
    grid-column: 1 / 1;
    grid-row: 1 / 3;
  }

  .grid .main-top-left {
    grid-column: 2 / 2;
    grid-row: 1 / 2;
  }

  .grid .right-bottom {
    grid-column: 2 / 2;
    grid-row: 2 / 3;
  }
}

.testimonial-box {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-light);
  border-radius: 1.25rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: sans-serif;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: bold;
  font-size: 0.9rem;
  text-align: right;
}

/* TESTIONIAL SECTION END */


/*  SECTION START */

        
        /* Modern Footer Styles */
        .footer-section {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--color-gradient);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--color-white);
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--color-primary);
        }
        
        .footer-logo {
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo img {
            max-width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
        }
        
        .footer-description {
            font-size: 0.95rem;
            color: var(--color-light-gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--color-light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 10px;
            color: var(--color-primary);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--color-white);
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            color: var(--color-white);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: var(--color-primary);
            font-size: 1.2rem;
            margin-right: 15px;
            min-width: 20px;
        }
        
        .contact-info div {
            color: var(--color-light-gray);
        }
        
        .contact-info .contact-title {
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 3px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--color-white);
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--color-primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .copyright {
            color: var(--color-light-gray);
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links a {
            color: var(--color-light-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--color-white);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--color-white);
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .newsletter-btn {
            background: var(--color-primary);
            color: var(--color-white);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--color-secondary);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }
        
        
       
        
        




/* FAQS SECTION START */
.questions{

}



.question{
    margin-bottom: 2rem;
    background-color: var(--color-light);
    color: var(--color-black);
    padding: 20px 30px;
    border-radius: 8px;
    width: 600px;
    border: 1px solid var(--color-black);
}

.question-title{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 20px;
    margin-bottom: 1.2rem;
}

.question-title button{
    background-color: transparent;
    border: none;
    color: var(--color-black);
    font-size: 1.3rem;
    cursor: pointer;
}
.question-title h3{
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-black);
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
}
.question-answer{
    line-height: 1.5;
}
.question-answer{
    display: none;
}
.show-text .question-answer{
    display: block;
}
.close-door{
    display: none;
}
.show-text .close-door{
    display: inline;
}
.show-text .open-door{
    display: none;
}

.contact{
    margin-top: 20rem;
    text-align: center;
}
/* FAQS SECTION END */


@media screen and (max-width: 780px){
    /* HERO CONTAINER START */

.hero-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0rem;
    margin-top: 1rem;
    margin-bottom: -4rem ;
}
.hero-text{
    width: 50%;

}
.hero-image{
    width: 50%;
}
.hero-text h1{
    font-size: 2rem;
    font-weight: 620;
    margin-bottom: .9rem ;
}
.hero-text p{
    font-size: 1rem;
}
.hero-image img{
    width: 550px;
    margin-left: -3rem;
}
.hero-text small{
    font-size: .8rem;
    margin-bottom: 1rem;
}

.circle{
    width: 70px;
    height: 70px;

    border-radius: 50%;
    background-color: var(--color-text-one);

    top: 54%;
    right: 35%;
    z-index: 1;
}
.circle img{
    width: 25px;
    margin: 0 auto;
}
.circle small{
    font-size: .7rem;
}
/* HERO CONTAINER END */


/* INTER SECTION START */

.inter-section{
    margin-top: rem;
}
.inter-title{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 4rem;
}
.inter-title h2{
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.inter-title p{
    width: 90%;
    font-size: .9rem;
}
.inter-cards{
    display: grid;
    grid-template-columns: 1fr ;
}
.inter-card{
    gap: 1rem;
    padding: 1.5rem;
}
.inter-card img{
    width: 200px;
    margin-right: 0rem;
}

.inter-card-text{
    line-height: 1.5;
}
.inter-card-text h4{
    margin-bottom: .8rem ;
    font-size: 1.5rem;
    text-transform: capitalize;
}
.inter-btn{
    display: inline-block;
}

.inter-card:nth-child(2){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.inter-card:nth-child(2) img{
    border-radius: 20px;
}
.inter-card:nth-child(2):hover img{
    border: 3px solid var(--color-black);
}
.inter-card:nth-child(2):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}
.inter-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    transition: var(--transition);
}
/* INTER SECTION END */

.carousel-section{
    margin-top: 3rem;
}


/* SERVICES SECTION START */
.service-section{
    margin-top: 3rem;
    position: relative;
}
.service-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;

}
.service-text{
    width: 50%;
}
.service-image{
    width: 50%;
    margin-left: -2rem;
}
.service-image img{
    width: 480px;
}
.service-text{
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.text{
    gap: 1rem;
}
.text small{
    font-size: 1rem;

}
.text i{
    font-size: 1rem;
    padding: 9px;
}

.circle2{
    position: absolute;
    top: 47%;
    left: 40%;
    background-color: #b066ed;
}
.service-button{
    display:block;
}
/* SERVICES SECTION END */

/* automation SECTION START */

.automation-section{
    margin-top: 3rem;
}

.automation-cards{
    display: grid;
    grid-template-columns: 1fr;
}
.automation-card img{
    width: 200px;
    margin-right: 0rem;
}

.automation-card-text{
    line-height: 1.5;

    small{
        font-size: 1rem;
    }
}
.automation-card-text h4{
    font-size: 1.5rem;
}
.automation-btn{
    margin-top: 2rem;
}
/* automation SECTION END */
}

@media screen and (max-width: 430px){

.btn-container{
    padding: 8px 16px;
    font-size: 13px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* HERO CONTAINER START */

.hero-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: -4rem ;
    height: 100%;
}
.hero-text{
    width: 100%;
    /* text-align: center; */
}
.hero-image{
    width: 100%;
    order: -1; /* Move the image below the text */
    margin-left: -2rem;
}
.hero-text h1{
    font-size: 2rem;
    font-weight: 620;
    margin-bottom: .9rem ;
}
.hero-text p{
    font-size: 1rem;
}
.hero-image img{
    width: 500px;
    margin-left: -3rem;
}
.hero-text small{
    font-size: .8rem;
    margin-bottom: 1rem;
    text-align: center;
    /* margin: 0 auto; */
    line-height: 3;
}

.circle{
    width: 60px;
    height: 60px;

    border-radius: 50%;
    background-color: var(--color-text-one);

    top: 41%;
    left: 10%;
    z-index: 1;
}
.circle img{
    width: 20px;
    /* margin: 0 auto; */
}
.circle small{
    font-size: .6rem;
}
/* HERO CONTAINER END */


/* INTER SECTION START */

.inter-section{
    margin-top: 5rem;
}
.inter-title{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 4rem;
}
.inter-title h2{
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}
.inter-title p{
    width: 100%;
    font-size: .7rem;
    display: none;
}
.inter-cards{
    display: grid;
    grid-template-columns: 1fr ;
}
.inter-card{
    gap: 1rem;
    padding: 1.5rem;
}
.inter-card img{
    width: 100px;
    margin-right: 0rem;
}

.inter-card-text{
    line-height: 1.5;
}
.inter-card-text h4{
    margin-bottom: .8rem ;
    font-size: 1rem;
    text-transform: capitalize;
}
.inter-card-text p{
    font-size: .8rem;
    margin-bottom: 1rem;
}
.inter-btn{
    display: inline-block;
}

.inter-card:nth-child(2){
    background-color: var(--color-black) ;
    color: var(--color-white);
    transition: var(--transition);
}
.inter-card:nth-child(2) img{
    border-radius: 20px;
}
.inter-card:nth-child(2):hover img{
    border: 3px solid var(--color-black);
}
.inter-card:nth-child(2):hover{
    background-color: var(--color-bg);
    color: var(--color-black);
}
.inter-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    transition: var(--transition);
}
/* INTER SECTION END */

.carousel-section{
    margin-top: 3rem;
}
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  text-align: center;
  background-color: var(--color-light);
  padding: 2rem;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 90px;
  margin: 0 auto 1rem;
}

.carousel-caption h3 {
  font-size: 1.2rem;
  color: var(--color-text-one);
  margin-bottom: 0.5rem;
}

.carousel-caption p {
  font-size: .8rem;
  line-height: 1.4;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-text-one);
  color: var(--color-text-one);

  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}


.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}



/* SERVICES SECTION START */
.service-section{
    margin-top: 3rem;
    position: relative;
}
.service-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;

}
.service-text{
    width: 100%;
}
.service-image{
    width: 100%;
    margin-left: -5rem;
}
.service-image img{
    width: 420px;
}
.service-text{
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.text{
    gap: 1rem;
}
.text small{
    font-size: .8rem;

}
.text i{
    font-size: .9rem;
    padding: 9px;
}

.circle2{
    position: absolute;
    top: 24%;
    left: 72%;
    background-color: #b066ed;
}
.service-button{
    display:block;
}
/* SERVICES SECTION END */

/* automation SECTION START */

.automation-section{
    margin-top: 3rem;
}

.automation-cards{
    display: grid;
    grid-template-columns: 1fr;
}
.automation-card img{
    width: 100px;
    margin-right: 0rem;
}

.automation-card-text{
    line-height: 1.5;

    small{
        font-size: .8rem;
    }
}
.automation-card-text h4{
    font-size: 1.1rem;
}
.automation-card-text p{
    font-size: .8rem;
    margin-bottom: .7rem;
}
.automation-btn{
    margin-top: 2rem;
}
/* automation SECTION END */

/* FAQS SECTION START */
.questions{
  max-width: 800px;
    margin: 0 auto;
}



.question{
    margin-bottom: 2rem;
    background-color: var(--color-light);
    color: var(--color-black);
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    border: 1px solid var(--color-black);
}

.question-title{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 20px;
    margin-bottom: 1.2rem;
}

.question-title button{
    background-color: transparent;
    border: none;
    color: var(--color-black);
    font-size: 1.3rem;
    cursor: pointer;
}
.question-title h3{
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-black);
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
}
.question-answer{
    line-height: 1.5;
}
.question-answer{
    display: none;
}
.show-text .question-answer{
    display: block;
}
.close-door{
    display: none;
}
.show-text .close-door{
    display: inline;
}
.show-text .open-door{
    display: none;
}

/* FAQS SECTION END */

.testimonial-container2{
    margin-top: 12rem;
}

.footer-container{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}
.footer-links{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: .9rem;
    font-weight: 500;
}

}