@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Ubuntu:wght@400;500;700&display=swap");

:root{
    --primary-color:#2095ae;
    --white-color:#fff;
    --light-gray-color:#ddd;
    --blue-color: #11045b;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

html{
    font-size: 16px;
}

/* ----------------------------------------------Utility Classes Start--------------------------------------------------------------- */
.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a{
    text-decoration: none;
}
.heading-normal-txt{
    font-size: 1rem;
    letter-spacing: 6px;
    color: var(--primary-color);
}
.headings{
    font-size: 3rem;
    font-family: "ubuntu";
    padding-bottom: 2rem;
    letter-spacing: 2px;
}
.headings span{
    color: var(--primary-color);
}
.secondary-headings{
    font-size: 2.5rem;
    font-family: "ubuntu";
    padding: 1rem 0;
}
.lead{
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}
.primary-btn{
    width: 50%;
    outline: none;
    background-color: var(--primary-color);
    border: none;
    padding: 0.7rem;
    font-size: 1.7rem;
    border-radius: 4px;
    color: var(--white-color);
    cursor: pointer;
}
/* ----------------------------------------------Utility Classes CLose--------------------------------------------------------------- */


/* ===============================================Header Start================================================================== */

header{
  padding: 1rem 0;
  /* background: var(--primary-color); */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100;
  transition: all 0.3s ease-in-out;
} 

header.sticky{
    background: var(--primary-color);
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2{
    font-size: 35px;
    font-weight: 500;
    color:black;
    margin: auto 0%;
    display: block;
    left: 10;
}

nav h3{
    font-size: 20px;
    font-weight: 600;
    color: bisque;
    margin: 0;
    margin-top: 0% 0%;
    padding-top: 0%;
    padding: 0%;
    top: -3px;
    left: 0;
}

nav ul{
    list-style-type: none;
    display: flex;
}

nav ul li{
margin: 0 0.9rem;
position: relative;
}

nav ul li a{
    color: crimson;
    font-size: 1.1rem;
}

nav ul li::before{
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white-color);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
nav ul li:hover::before{
    opacity: 1;
    width: 100%;
}

.btn{
    font-size: 1.3rem;
    color: var(--white-color);
    cursor: pointer;
    display: none;
}
/* ===============================================Header Close================================================================== */

/* =================================================Showcase Start======================================================================= */

main{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.swiper{
    height: 100vh;
}
.slide-container{
    width: 100%;
}
.slide-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-overlay{
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 100%;
    font-family: "ubuntu";
    transform: translate(-50%, -50%);
}

.img-overlay p{
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--white-color);
    animation: animate 4s forwards;
}

.img-overlay h2{
    font-size: 5rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: animate 4s backwards;  
    transition: all 0.5s ease-in-out;
}

.overlay{
    position: relative;
}
.overlay::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

@keyframes animate{
    0%{
        transform: translateX(-50%);
        opacity: 0;
    }
    50%{
        opacity: 0.2;
    }
    70%{
        opacity: 0.5;
    }
    70%{
        opacity: 1;
        transform: translateX(-0%);
    }
}

.img-overlay h2 span{
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
}
/* =================================================Showcase Close======================================================================= */

/* ==================================================About Start======================================================================== */
.about-content-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    margin: 3rem 0;
}

.about-content-wrapper h3{
   padding: 0.5rem;
   margin-bottom :1rem;
}
.about-content-wrapper ul li{
    padding: 0.5rem;
    padding-bottom: 0.2rem;
    align-items: center;
     /* margin: 1rem 0;  */
 }

.about-content-wrapper h2 span{
    color: var(--primary-color);
    font-family: "ubuntu";
}
.about-content-wrapper ul{
    list-style: none;
}

.about-content-wrapper ul .icons{
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.about-content-wrapper ul .icons i{
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--white-color);
}


.agency-right-side .img{
position:   relative;
/* padding-top: 80rem; */
}

.agency-right-side .img img{
    width: 75%;
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    transition: 0.5s ease-in;
}
.agency-right-side .img::after{
    content: "";
    position: absolute;
    top: 15px;
    left: 55px;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    width: 95%;
    height: 100%;
    z-index: -2;
}

.agency-right-side .img img:hover{
    transform: scale(0.95);
}
/* ===========================2ND iNAGE=============================== */

/* ==================================================About Close======================================================================== */

 #choose-place{
    padding: 4rem 0;
    margin: -3rem 0;
}

.choose-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
}
.lg-img{
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    width: 100%;
    height: 96%;
    display: block;
}

.lg-img:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
} 

.lg-img:hover {
    transform: scale(1.02);
}

.img-content{
    position: absolute;
    bottom: 20px;
}

.img-content h2{
    padding: 0 2rem;
    color: var(--white-color);
}
.hidden-content{
    padding: 0.5rem 2rem;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(18, 126, 155, 0.7);
} 

.layer h2{ 
    width: 100%;
    font-weight: 500;
    color:#fff;
    font-size: 26px;
    bottom: 100%;
    left: 80%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h2{
    bottom: 49%;
    opacity: 1;
} 

.layer p{ 
    width: 60%;
    font-weight: 300;
    color:#fff;
    font-size: 15px;
    padding: 0%;
    bottom: 0;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover p{
    bottom: 25%;
    opacity: 1;
} 

.row-wise-img{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}


/* ======================================Closed======================================================================== */

/* =================================================Start===================================================================== */

.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-top: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.facilities-col{
    flex-basis: 21%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-top: 10px;
}

.facilities-col{
    flex-basis: 21%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities-col img{
    width: 80%;
   padding: 20px;
   height: 40%;
   border-radius: rounded;
    border-radius: 20px;
    transition: all 0.5s;
    cursor: pointer;
}

.facilities-col:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
} 

/* =================================================Closed======================================================================= */

/* ======================================Static Start====================================================== */

#static-counter{
    padding: 6rem 0;
  background: url("../image/Office.png") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    z-index: 4;
    margin-left: 3%;
    margin-right: 3%;
}

#static-counter::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.static-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0; 
}

.static-icons a{
    color: var(--white-color);
    cursor: pointer;
}

.static-icons i{
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.static-icons i:hover{
    background: var(--primary-color);
    border: none;
    transform: translateY(-20%);
}

.static-icons p{
    font-size: 1rem;
    color: var(--white-color);
}

/* ======================================Static Close====================================================== */

#costa-victoria{
    padding: 6rem 0;
    position: relative;
}

#costa-victoria video{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    max-height: 650px;
}
.video-bg{
    position: relative;
}

.video-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.video-content{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    color: var(--white-color);
}

.video-content h2{
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--white-color);
    font-family: "ubuntu";
    margin-bottom: 1rem;
}

.video-content span{
    color: crimson;
    font-family: "ubuntu";
}

/* ========================================Subscription Start========================================================================== */


/* ===========================================Read more Start===================================================================== */
/* .extra{
    display: none;
}

p{
    display: inline;
}

input[type="checkbox"]{
    height: 2em;
    display: block;
    appearance: none;
}

label{
    position: relative;
    padding: 1em;
    background-color: var(--white-color);
    cursor: pointer;
}

label:before{
    content: "Read More";
}
input[type="checkbox"]:checked ~ label:before{
    content: "Read Less";
}
.dots:has(~input[type="checkbox"]:checked){
    display: none;
}
.extra:has(~ input[type="checkbox"]:checked){
    display: inline;
} */

/* ===========================================Read more End===================================================================== */


#page2{
    height: 95vh;
    width: 100%;
    /* background-color: bisque; */
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;   
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
}

#page2 h1{
font-size: 1.8vw;
width: 60%;
line-height: 3.2vw;
letter-spacing: 5px;
color:brown;
}

#Anim-part2{
    width: 20%;
    /* background-color: aqua; */
}

#Anim-part2 img{
    width: 100%;
    border-radius: 15px;
    padding-bottom: 2rem;
}

#Anim-part2 h4{
    font-weight: 100;
    font-family: ubuntu;
    margin-top: 1vw;
    /* letter-spacing: 3px; */
}

.extra{
    display: none;
}

h4{
    display: inline;
}

input[type="checkbox"]{
    height: 2em;
    display: block;
    appearance: none;
}

label{
    position: relative;
    padding: 1em;
    background-color: var(--primary-color);
    border-radius: 100%;
    cursor: pointer;
}

label:before{
    content: "Read More";
}
input[type="checkbox"]:checked ~ label:before{
    content: "Read Less";
}
.dots:has(~input[type="checkbox"]:checked){
    display: none;
}
.extra:has(~ input[type="checkbox"]:checked){
    display: inline;
} 

#page2 #gooey{
    height: 30vw;
    width: 30vw;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(169, 55, 55);
    top: 98%;
    left: 2%;
}
/* ===========================================What we do list end============================================================================ */

/*---------------------------------------------------------------- blog -------------------------------------------------------- */

#blog-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vw;
    padding-top: 30px;
    padding-bottom: 1px;
}

#blog-container .blogs{
    width: 60%;
}

#blog-container .blogs img{
    width: 100%;
    border-radius: 19px;
}
#blog-container .blogs .post{
    padding-bottom: 60px;
}
#blog-container .blogs .post h3{
    color: #29203b;
    padding: 15px 0 10px 0;
}
#blog-container .blogs .post p{
    color: #757373;
   padding-bottom: 20px;
}
#blog-container .blogs .post a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 5px;
    font-weight: 600;
}

/* #blog-container .cate{
    width: 30%;
}
#blog-container .cate h2{
    padding-bottom: 9px;
    padding-left: 10rem;
}

#blog-container .cate a{
    text-decoration: none;
    color: #757373;
    font-weight: 500;
    line-height: 2px;
    padding-left: 10rem;
}

#blog-container .blogpost {
    width: 60%;
    margin: 0 auto;
}

#blog-container .blogpost img{
    padding-top: 50px;
}

#blog-container .blogpost  p{
    text-align: justify;
    padding-bottom: 60px !important; 
} */

/* Categories container */
.cate {
  width: 280px;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
  align-self: flex-start;
  margin-left: auto;
  margin-top: 40px;
}

/* Heading */
.cate h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #112d4e;
  font-weight: 700;
  text-align: center;
}

/* Horizontal lines */
.cate hr {
  border: none;
  border-top: 1px solid #dee2e6;
  margin: 10px 0;
}

/* Links */
.cate a {
  display: block;
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.cate a:hover {
  color: #084298;
  transform: scale(1.02);
}

/* Responsive behavior */
@media (max-width: 992px) {
  .cate {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    position: static;
    text-align: center;
  }
}


/* #blog-container .blogpost .heading-exceed-txt p{
     font-size: 2rem;
    color: #2095ae;
    letter-spacing: 4px;
    margin-top: 25px;
   
} */
/* ============================================== Services Start =============================================== */
 #services{

}
#services .services{
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 0;
}

#services .section-title{
    font-size: 3.8rem;
    font-weight: 200;
    color: black;
    margin-bottom: 1px;
    text-transform: uppercase;
    /* letter-spacing: .1rem; */
    text-align: center;
}
#services .section-title span{
 color: crimson;
}


  #about {
  background: #f5f5f5;
  padding: 80px 20px;
  color: #333;
}

.about.container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Image Column */
.col-left .about-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.col-left .about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.col-left .about-img img:hover {
  transform: scale(1.03);
}

/* Text Content */
.col-right h1.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.col-right h1.section-title span {
  color: #28a745;
}

.col-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
}

.col-right p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.col-right p b {
  color: #1c1c1c;
}

.col-right p i {
  color: #28a745;
}

/* CTA Button */
.col-right .cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.col-right .cta:hover {
  background-color: #218838;
}

/* ========================About Section END============================ */



/* ----------------------------------------Footer----------------------------------------- */

footer{
    padding: 6rem 1rem;
    bottom: 2rem;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
   width: 100%;
   border-top-left-radius: 125px;
   font-size: 13px;
   line-height: 20px;
   margin-top: 0.5rem;
}

.ride{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.column{
    flex-basis: 25%;
    padding: 10px;
}

.column:nth-child(2), .column:nth-child(3){
    flex-basis: 15%;
}

.column img{
    width: 200px;
    margin-bottom: 2rem;
}

.photo{
    width: 80px;
    margin-bottom: 30px;
}

.column h5{
    /* width: fit-content; */
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
}

.column h6{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li{
    list-style: none;
    margin-bottom: 12px;
}
ul li a{
    text-decoration: none;
    color: var(--white-color);
}

.column h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--white-color);
    margin-bottom: 50px;
}

form .far{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: var(--white-color);
    border: 0;
    outline: none;
}

form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.column p{
    color: white;
}
form button .fas{
    font-size: 16px;
    color: var(--white-color);
}

.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background-color: #fff;
    margin-right: 15px;
    cursor: pointer;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid  #767676;;
    margin: 20px auto;
} 
.copyright{
    text-align: center;
    color: white;
}

.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: var(--white-color);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
     100%{
        right: -100px;
    }
}

/* ======================================Contact us============================================== */

 .contact {
  background: #f9f9f9;
  padding: 60px 20px;
  color: #333;
}

.contact .context {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.contact .context h2 {
  font-size: 36px;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.contact .context p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Grid layout for contact info and form */
.containerbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Contact Info Boxes */
.contactInfo .box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contactInfo .icon {
  font-size: 24px;
  color: #28a745;
  margin-right: 20px;
}

.contactInfo .text h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.contactInfo .text p {
  font-size: 16px;
  color: #555;
}

/* Form Styling */
.contact-col {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-col h2 {
  font-size: 24px;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.contact-col form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-col input,
.contact-col textarea {
  flex: 1 1 45%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-col textarea {
  flex: 1 1 100%;
  resize: vertical;
  min-height: 150px;
}

.contact-col input:focus,
.contact-col textarea:focus {
  border-color: #28a745;
}

.contact-col button {
  flex: 1 1 100%;
  padding: 14px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-col button:hover {
  background-color: #218838;
}

/* What we do */

/* Projects section */
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
    /* margin-top: 0.2rem; */
}
#projects .projects-header h1 {
	/* margin-bottom: 10px; */
    /* margin-top: 0.8px; */
    color: crimson;
    text-align: center;
    font-size: xx-large;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: var(--primary-color);
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}
#projects .project-img img {
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	/* border: 2px solid crimson; */
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
}


/* =======================================Industries======================================================== */
/* #insane{
      box-sizing: border-box;
    margin-top: 2rem;
   margin-left: 2px;
   padding-right: 5px;
   text-align: center;
} */

#insane {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  border-left: 6px solid #00acc1;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
  font-family: 'Segoe UI', sans-serif;
  color: #004d40;
  font-size: 1.2rem;
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0, 172, 193, 0.2);
  border-radius: 12px;
}

#insane p {
  margin: 0;
}



/* ====== Industry Section ====== */

/* General Reset */
    /* .industry-section {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: auto;
    }
    .industry-card {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .industry-image {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      background: linear-gradient(120deg, #89f7fe, #66a6ff);
    }
    .industry-image img {
      max-width: 180px;
      height: auto;
      border-radius: 16px;
      transition: transform 0.3s ease;
    }
    .industry-card:hover .industry-image img {
      transform: scale(1.1);
    }
    .industry-text {
      flex: 2;
      padding: 2rem 3rem;
    }
    .industry-text h1 {
      margin-top: 0;
      font-size: 2rem;
      color: #2d3436;
    }
    .challenges {
      font-style: italic;
      color: #636e72;
      margin: 1rem 0;
    }
    .solutions h3 {
      color: #0984e3;
      margin: 1rem 0 0.5rem;
    }
    .solutions ul {
      margin: 0;
      padding-left: 1.2rem;
    }
    .solutions li {
      margin-bottom: 0.5rem;
      color: #2f3542;
      line-height: 1.5;
    }
    .industry-card:nth-child(even) {
      flex-direction: row-reverse;
    }
    @media (max-width: 768px) {
      .industry-card,
      .industry-card:nth-child(even) {
        flex-direction: column;
      }
      .industry-text {
        padding: 1.5rem;
      }
      .industry-image img {
        max-width: 140px;
      }
    } */

    /* ----------------------------------------------------------------------- */

      /* .industry-section {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: auto;
    }
    .industry-card {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .industry-image {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: transparent;
    }
    .industry-image img {
      max-width: 240px;
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    .industry-card:hover .industry-image img {
      transform: scale(1.05);
    }
    .industry-text {
      flex: 2;
      padding: 2rem 3rem;
    }
    .industry-text h1 {
      margin-top: 0;
      font-size: 2rem;
      color: #2d3436;
    }
    .challenges {
      font-style: italic;
      color: #636e72;
      margin: 1rem 0;
    }
    .solutions h3 {
      color: #0984e3;
      margin: 1rem 0 0.5rem;
    }
    .solutions ul {
      margin: 0;
      padding-left: 1.2rem;
    }
    .solutions li {
      margin-bottom: 0.5rem;
      color: #2f3542;
      line-height: 1.5;
    }
    .industry-card:nth-child(even) {
      flex-direction: row-reverse;
    }
    @media (max-width: 768px) {
      .industry-card,
      .industry-card:nth-child(even) {
        flex-direction: column;
      }
      .industry-text {
        padding: 1.5rem;
      }
      .industry-image img {
        max-width: 200px;
      }
    } */

       .industry-section {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: auto;
    }
    .industry-card {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s forwards;
    }
    .industry-card:nth-child(even) {
      flex-direction: row-reverse;
    }
    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .industry-card:hover .industry-image {
      background: linear-gradient(145deg, #d0e3ff, #c3dcff);
    }
    .industry-image::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(rgba(0,0,0,0.05), transparent);
      animation: rotateBg 10s linear infinite;
      z-index: 0;
    }

    .industry-card:hover .industry-image img {
      transform: scale(1.08);
      filter: brightness(1.1);
    }
    .industry-text {
      flex: 2;
      padding: 2rem 3rem;
      position: relative;
      z-index: 2;
    }
   .industry-image {
  flex: 1 1 200px; /* reduced from 400px */
  padding: 2rem;
  background: #eef4ff;
  transition: background 0.5s ease, transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.industry-image img {
  max-width: 380px; /* reduced from 500px */
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
  z-index: 1;
  position: relative;
}

.industry-text h1 {
  margin-top: 0;
  font-size: 2.4rem; /* increased from 2rem */
  color: #2d3436;
  font-weight: 700;
  letter-spacing: 1px;
}
    .challenges {
      font-style: italic;
      color: #636e72;
      margin: 1rem 0;
    }
    .solutions h3 {
      color: #0984e3;
      margin: 1rem 0 0.5rem;
    }
    .solutions ul {
      margin: 0;
      padding-left: 1.2rem;
    }
    .solutions li {
      margin-bottom: 0.5rem;
      color: #2f3542;
      line-height: 1.5;
    }
    .industry-text strong {
  color: #e91e63; /* vibrant pink */
  font-weight: 500;
}

    @media (max-width: 768px) {
      .industry-card,
      .industry-card:nth-child(even) {
        flex-direction: column;
      }
      .industry-text {
        padding: 1.5rem;
      }
      .industry-image img {
        max-width: 320px;
      }
    }

    @keyframes rotateBg {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
/* Industry below  */

.section-run {
  background: linear-gradient(135deg, #4899a4, #ffffff);
  /* padding: 4rem 2rem; */
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
  margin-top: 0.5rem;
  margin-bottom: 8rem;
}

.section-run h4 {
  font-size: 2rem;
  color: #00796b;
  margin-bottom: 1rem;
}

.section-run .subtitle {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.section-run .highlight {
  color: #0e3831;
  font-weight: bold;
}

.section-run {
  animation: fadeInUp 1s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}