*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
            scroll-behavior: smooth;
        }

:root{ 
    /* Font Base */ 
    font-size: 10px; 

    /* Gradients */ 
    --gradient-clr: linear-gradient(to right,#FF6B35,#F7931E, #FFC312);
    --blue-gradient: linear-gradient(to right,#1E304F , #4DA6FF); 
    --purple-gradient: linear-gradient(to right, #8B5CF6, #A855F7, #D946EF); 

    /* Primary Colors */ 
    --orange: #FF6B35; 
    --orange-dark: #FF6C35; 
    --blue: #2171D9; 
    --nav-blue: #00bcd4; 
    --dark-blue: #1E304F; 
    --royal-blue: #004A89; 
    --sky-blue: #81E6F6; 
    --light-sky: #C0E8F6; 

    /* Neutral */ 
    --black: #000; 
    --white: #fff; 
    --gray-light: #f5f5f5; 

    /* Shadows */ 
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.15); 
    --shadow-md: 0 4px 5px rgba(0,0,0,0.25); 
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.1); 
    --shadow-md-in:inset 0 4px 5px rgba(0,0,0,0.25); 

    /* Radius */ 
    --radius-sm: 8px; 
    --radius-md: 16px; 
    --radius-lg: 30px; 

    /* Transitions */ 
    --transition-fast: 0.2s ease; 
    --transition-mid: 0.4s ease; 
    --transition-slow: 0.6s ease; }

body{
    font-family: "Inter", sans-serif;
    color: black;
}

/* ********Header section from here******** */

/* ===== MAIN HEADER GRID ===== */
.header{
    max-width: 1920px;
    margin: 0 auto;
    height: 80px;

    display: grid;
    grid-template-columns: 0.5fr 1fr 0.5fr;
    align-items: stretch;
    align-content: stretch;

    padding: 0 100px;
    position: relative;
}

.header > *{
    /* border: 1px solid red; */
    height: 90%;
}

/* ===== LOGO ===== */
.logo-container{
    display: flex;
    align-items: center;
}

.logo{
    height: 100%;
    padding: 7px;
    display: flex;
    align-items: center;
}

.logo-img{
    height: 100%;
    object-fit: contain;
}

/* ===== NAVIGATION ===== */
#navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: all 0.5s;
}

#navigation .nav-item{
    color: var(--black);
    font-weight: 700;
    font-size: 1.8rem;
    font-style: italic;
    padding: 12px 18px;
    transition: color 0.3s;
}

#navigation .nav-item:hover{
    color: var(--nav-blue);
}

#navigation .contact-header{
    display: none;
}

/* ===== CONTACT ===== */
.header-contact-container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-header{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--blue);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.432);
}

.contact-header img{
    height: 25px;
    width: 25px;
}

/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.596);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3em;
  cursor: pointer;
  transition: all 0.3s;
}

.cssbuttons-io-button .icon {
  background: var(--white);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    height: 20px;
    width: 20px;
    fill: var(--blue);
  transition: transform 0.3s;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.cssbuttons-io-button:active{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.753);
}

/* ===== MENU ICON (MOBILE) ===== */
.menu{
    display: none;
    justify-content: end;
    align-items: center;
    
}

.menu-icon{
    cursor: pointer;
    height: 60px;
    width: 60px;
}

/* ===== CLOSE BUTTON ===== */
.close-btn{
    all: unset;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 20px;
    right: 15px;
    border: 2px solid black;
    border-radius: 50%;
    display: none;
}


.close-btn img{
    /* border: 2px solid black; */
    height: 100%;
    width: 100%;
}


/* ********Hero section from here******** */

.hero{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 100px;
    background-color: var(--white);
box-shadow: var(--shadow-md-in);
background:
  radial-gradient(
    ellipse 93.13% 161.61% at 5.88% 18.29%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.20) 88%
  ),
  radial-gradient(
    ellipse 56.49% 25.63% at 49.97% 34.94%,
    rgba(255, 255, 255, 0) 0%,
    rgba(192, 232, 246, 0.20) 100%
  ),
  radial-gradient(
    ellipse 105.11% 127.96% at 39.91% -7.79%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.14) 21%,
    rgba(255, 255, 255, 0.18) 68%,
    rgba(0, 74, 137, 0.20) 100%
  ),
  radial-gradient(
    ellipse 95.13% 199.34% at 13.45% 68.29%,
    var(--white) 0%,
    var(--white) 35%,
    var(--royal-blue) 100%
  );

display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 150px;
align-items: center;
position: relative;
}

.hero .content-box{
    margin-left: 100px;
}

.hero .content-box h2{
    font-size: 8rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: "Raleway", sans-serif;
}

.hero .hero-img{
    display: flex;
}

.hero .hero-img img{
    max-height: 700px;
}

.hero .content-box h2 span:first-of-type{
    background-image: var(--gradient-clr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Inter", sans-serif;
}

.hero .content-box h2 span:last-of-type{
    color: var(--orange-dark);
    font-family: "Inter", sans-serif;
}

.hero .content-box h3{
    font-size: 2.7rem;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 1px;
    color: var(--dark-blue);
    font-family: "Raleway", sans-serif;
    font-weight: 400;
}

.hero button{
    border: 2px solid var(--orange-dark);
    background-color: transparent;
    border-radius: 40px;
    color: var(--orange-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-top: 25px;
    padding: 15px 25px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.hero button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.hero button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--orange-dark);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.hero button:hover {
  color: var(--white);
  border: 2px solid var(--orange-dark);
}

.hero button:hover:before {
  top: -35%;
  background-color: var(--orange-dark);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.hero button:hover:after {
  top: -45%;
  background-color: var(--orange-dark);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* ********About section from here******** */

.about{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 100px 60px;
    box-shadow: var(--shadow-md-in);
}

.about .about-content{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    justify-content: space-between;
    align-items: center;
}

.about .about-content .about-img, .about .about-content p{
    /* border: 1px solid red; */

}

.about .about-content .about-img img{
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.514);
}

.about .about-content p{
    font-size: 2.3rem;
    line-height: 3.5rem;
    letter-spacing: 1px;
    padding-inline-end: 100px;
}

.about .about-content p span{
    font-weight:700;
}

.heading-container{
    margin-bottom: 50px;
    text-align: center;
}

.heading-container h3{
    font-size: 4rem;
    font-weight: 600;
}

.heading-container h3 span{
    background-color: var(--orange);
    -webkit-background-clip: text;
    color: transparent;
}

.heading-container p{
    font-weight: 600;
    font-size: 2rem;
    color: var(--dark-blue);
    font-family: "Raleway", sans-serif;
    margin-top: 15px;
}



/* ********Services section from here******** */

.services{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 100px 60px;
    background: var(--sky-blue);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25), var(--shadow-md);

background:
  radial-gradient(
    ellipse 121.23% 323.06% at 1.42% 94.48%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.20) 46%,
    rgba(255, 255, 255, 0.20) 93%
  ),
  radial-gradient(
    ellipse 56.49% 25.63% at 49.97% 34.94%,
    rgba(255, 255, 255, 0) 0%,
    rgba(129, 230, 246, 0.20) 100%
  ),
  radial-gradient(
    ellipse 105.11% 127.96% at 39.91% -7.79%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.14) 21%,
    rgba(255, 255, 255, 0.18) 68%,
    rgba(0, 74, 137, 0.20) 100%
  ),
  radial-gradient(
    ellipse 101.43% 214.06% at 13.45% 68.29%,
    var(--white) 0%,
    var(--white) 35%,
    var(--royal-blue) 100%
  );
}

.services .heading-container span{
    background-color: none;
    background-image: var(--purple-gradient);
}

.services .all-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: space-around;
  align-items: start;
  margin: 0 auto;
  column-gap: 50px;
  row-gap: 30px;
}

/* Individual card */
.services .all-services-container .service-container {
    position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: var(--shadow-lg);
  height: 430px;
  cursor: pointer;
}

/* IMAGE CONTAINER */
.services .service-container .img-container {
    position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 80%;
  align-self: stretch;
  transform-origin: bottom;

  background-image: linear-gradient(rgba(0, 0, 0, 0.096), black);
  transition: height 0.5s ease;
}

/* HOVER EXPAND */
.services .all-services-container .service-container:hover .img-container {
  height: 100%;
}

/* IMAGE */
.services .service-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.5s;
}

/* GRADIENT OVERLAY */
.services .service-container .img-container::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.15),
    transparent
  );

  opacity: 0;
  transition: opacity 0.5s;
}

/* HOVER EFFECT */
.services .service-container:hover .img-container::after {
  opacity: 1;
}

.services .btn{
    padding: 10px 15px;
    background-image: var(--blue-gradient);
    border-radius: 40px;
    color: var(--white);
    border: none;
    outline: none;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 500;
    transition: all 0.4s;
    position: absolute;
    bottom: 7%;
}

.services .all-services-container .service-container:hover .btn{
    bottom: 13%;
    background: transparent;
}

/* ********Work section from here******** */

.works{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 100px;
}

.works .all-works-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 270px));
  justify-content: space-around;
  align-items: start;
  margin: 50px auto;
  column-gap: 50px;
  row-gap: 30px;
}

.work-container-border{
    background: linear-gradient(165deg,rgb(0, 215, 248) 0%, rgb(255, 255, 255) 40%);
    padding: 2px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.479);
    position: relative;
    height: 200px;
    transition: all 0.3s;
    cursor: pointer;
}

.work-container-border:hover{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.479);
}

/* ================= WORK CONTAINER ================= */

.works .all-works-container .work-container{
    height: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    background: linear-gradient(165deg,rgba(129, 230, 246, 1) 0%, rgba(255, 255, 255, 1) 30%);
    overflow: hidden;
    z-index: 1;
}

/* ===== Overlay gradient for smooth transition ===== */
.works .all-works-container .work-container::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg,rgba(129, 230, 246, 1) 20%, rgba(255, 255, 255, 1) 72%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Hover effect */
.work-container-border:hover .work-container::after{
    opacity: 1;
}

/* ================= CORNER EFFECT (RIGHT SIDE) ================= */

.work-container-border{
    position: relative;
}

/* flipped corner */
.work-container-border::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    left: auto;
    background: linear-gradient(
        225deg,
        rgb(255, 255, 255) 0%,
        rgb(255, 255, 255) 50%,
        #5ed9ec 50%,
        #81E6F6 60%
    );
    border-radius: 0 0 0 0.5em;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.5); 
    transition: 0.3s;
    z-index: 99;
}

/* Hover expansion */
.work-container-border:hover::before {
    width: 40px;
    height: 40px;
}

.works .work-container h4{
    font-size: 2rem;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.works .work-container h5{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
}

.works .work-container span{
    position: absolute;
    top: 8px;
    right: 12px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
}



/* ********Footer section from here******** */

.footer{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 100px 100px;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.219);
    background:
  radial-gradient(
    ellipse 51.60% 80.06% at 55.78% 41.34%,
    rgba(255, 255, 255, 0) 0%,
    rgba(16, 185, 129, 0.20) 100%
  ),
  radial-gradient(
    ellipse 90.63% 264.86% at 35.35% 74.79%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 27%,
    rgba(37, 99, 235, 0.20) 100%
  );
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  /* border: 3px solid red; */
}

.footer > *{
    /* border: 3px solid red; */
    padding: 25px 15px;
    padding-left: 70px;
}

.footer .col-1, .footer .col-2, .footer .col-3{
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 25px;
}

.footer .col-1 .img-container{
    height: 100px;
}

.footer .col-1 .img-container img{
    height: 100%;
}

.footer .col-1 p{
    font-size: 1.6rem;
    font-weight: 500;
    max-width: 60%;
    color: var(--dark-blue);
    /* border: 1px solid red; */
}

.footer .col-2 , .footer .col-3{
    gap: 20px;
}

.footer .col-2 h4, .footer .col-3 h4{
    font-size: 2.5rem;
    font-weight:600;
}

.footer .col-2 h4{
    margin-left: 40px;
}

.footer .col-2 a, .footer .col-3 a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-blue);
    /* border: 1px solid red; */
}

.footer .col-2 a img, .footer .col-3 a img{
    height: 30px;
    width: 30px;
}

.footer .col-2 a.location{
    max-width: 70%;
    line-height: 2.5rem;
}

.footer .col-2 > *{
}
