/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* Base Styles */
nav {
    background: linear-gradient(180deg, #00bfff, #ff5720);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

/* Scrolled State */
nav.scrolled {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.9));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
}

/* Logo */
nav .logo {
    font-size: 1.9em;
    font-weight: 600;
    color: #c2c2c2;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s, transform 0.3s;
    margin: 0;
    margin-left: 30px;
}

/* Navigation Links Container */
nav .nav-links {
    display: flex;
    align-items: center;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* Hide by default on mobile */
@media (max-width: 768px) {
    .nav-links {
        max-height: 0;
        opacity: 0;
        overflow: hidden; /* Ensure it doesn't affect the layout */
    }

    .nav-links.active {
        max-height: 200px; /* Adjust according to your menu height */
        opacity: 1;
    }
}

/* Navigation Links */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Ensure links are vertically centered */
}

nav ul li {
    position: relative;
    margin: 0 20px;
}

nav ul li a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1.2em;
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
    transition: color 0.4s, background-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

nav ul li a::before {
    content: '';
    display: block;
    height: 3px;
    background: #00bfff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    transition: width 0.4s;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Dropdown Menu */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    margin: 0px;
    background: linear-gradient(180deg, rgba(50, 50, 50, 0.95), rgba(0, 0, 0, 0.9));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    border-radius: 12px;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(10px);
}

nav ul li:hover ul {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

nav ul li ul li {
    margin: 11px;
}

nav ul li ul li a {
    padding: 12px 25px;
    font-size: 1em;
    color: white;
    transition: background-color 0.4s, color 0.4s;
}

nav ul li ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #00bfff;
}

/* Search Bar */
nav .search {
    display: none;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 8px 12px;
    background: #222;
    color: white;
    transition: width 0.4s, opacity 0.4s, box-shadow 0.4s;
}

nav .search.active {
    display: block;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

nav .search input {
    background: transparent;
    border: none;
    color: white;
    padding: 2px;
    width: 100%;
    transition: width 0.4s;
}

nav .search input:focus {
    outline: none;
}

/* Mobile Menu Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.5em;
    color: #9a9a9a;
    cursor: pointer;
    transition: color 0.4s, transform 0.4s;
}

/* Mobile Menu Toggle Button and Layout */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
        z-index: 1000;
        align-items: stretch; /* Ensure items stretch to fit the container */
    }

    /* Container to align logo and toggle button */
    .nav-header {
        display: flex;
        justify-content: space-between; /* Space between logo and toggle button */
        align-items: center; /* Center vertically */
        width: 100%;
    }

    .logo {
        margin: 0;
    }

    .nav-toggle {
        display: block;
        font-size: 2.5em;
        color: white;
        cursor: pointer;
        margin-right: 20Px;
        transition: color 0.4s, transform 0.4s;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .nav-links.active {
        max-height: 500px; /* Adjust according to your menu height */
        opacity: 1;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(0, 0, 0, 0.9));
    }

    nav ul li {
        margin: 10px 0;
        text-align: left;
        width: 100%;
    }

    nav ul li a {
        padding: 15px 20px;
        width: 100%;
        display: block;
    }

    nav .search {
        display: block;
        margin-top: 15px;
        width: 100%;
    }
}


/* Nav Hidden State */
nav.nav-hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.4s, opacity 0.4s linear;
}

/* Nav Open State */
nav.nav-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s linear;
}


.spaced {
  margin-right: -9px; /* Adjust the spacing as needed */
}

.color1 {
  background: linear-gradient(45deg, #00bfff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color2 {
  background: linear-gradient(45deg, #f9f9f9, #f1f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color3 {
  background: linear-gradient(45deg, #e74c3c, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Case Studies Section Styling */
#case-studies {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.case-study {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study h3 {
  color: #ff5722;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.case-study p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.case-study:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

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

  .case-study {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .case-study {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .case-study {
    padding: 10px;
  }

  .case-study h3 {
    font-size: 1.5rem;
  }

  .case-study p {
    font-size: 0.9rem;
  }
}


/* Typography Enhancements */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif; /* Add Google Fonts */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Sticky Navigation Bar */
nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav a {
  padding: 15px;
  text-decoration: none;
  color: #333;
}

/* Animations for Sections */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Improved Call-to-Action */
.cta-primary:hover, .cta-secondary:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* Background Patterns */
#services {
  background-image: url('img/service-section-background.png');
  background-size: cover;
}

/* Section Dividers */
.section-divider {
  height: 5px;
  background-color: #ff5722;
  margin: 50px 0;
}

/* Testimonials Section Styling */
#testimonials {
  background-color: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 1rem;
  color: #ff5722;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .testimonial {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-author {
    font-size: 0.8rem;
  }

  .testimonial {
    padding: 10px;
  }
}


/* Success and Error Messages */
.message-box {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 10000;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.message-box.success {
  background-color: #28a745;
}

.message-box.error {
  background-color: #dc3545;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Exit-Intent Popup */
#exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

#exit-popup .popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.popup-close {
  background-color: #f00;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
}

.popup-close:hover {
  background-color: #c00;
}

/* Fade-in Section */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #ff5722;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hero Section */
#hero-section {
  position: relative;
  background: linear-gradient(to right, #ff5722, #ff9800);
  color: white;
  padding: 100px 20px;
  text-align: center;
  height: 69vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Responsive Typography */
.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  z-index: 2;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 30px;
  z-index: 2;
}

.cta-buttons {
  z-index: 2;
}

.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary {
  background-color: #ff9800;
  color: white;
  margin-right: 15px;
}

.cta-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.cta-primary:hover, .cta-secondary:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  #hero-section {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-primary, .cta-secondary {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .cta-primary, .cta-secondary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}


/* Services Section */
#services {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
}

.service-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background-color: #ff9800;
  padding: 20px;
  color: white;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  transition: transform 0.3s ease;
}

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

/* Why Choose Us Section */
#why-us {
  background-color: #f3f4f6;
  padding: 50px 20px;
  text-align: center;
}

.why-us-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.why-us {
  background-color: #ff5722;
  padding: 20px;
  color: white;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  transition: transform 0.3s ease;
}

.why-us:hover {
  transform: translateY(-5px);
}

/* Case Studies Section */
#case-studies {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
}

.case-study {
  margin-bottom: 20px;
}

/* Testimonials Section */
#testimonials {
  background-color: #f3f4f6;
  padding: 50px 20px;
  text-align: center;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
}

/* Call to Action Section */
#cta {
  background-color: #ff5722;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

#cta a {
  background-color: white;
  color: #ff5722;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 30px;
}

/* Contact Form Section Styling */
#contact {
  background-color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

#contact-form {
  width: 100%;
  max-width: 600px;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #f0f0f0;
  color: #333;
}

textarea {
  resize: none;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: #ff5722;
  background-color: #fff;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #ff5722;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  #contact-form {
    padding: 30px;
  }

  input[type="text"], input[type="email"], textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  #contact-form {
    padding: 20px;
  }

  input[type="text"], input[type="email"], textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .btn-submit {
    font-size: 0.9rem;
  }
}


/* Exit-Intent Popup */
#exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.popup-cta {
  display: inline-block;
  padding: 10px 30px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 30px;
}

.popup-close {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}

/* Footer Styles */
footer {
  position: relative;
  z-index: 3; /* Ensure footer is above other elements */
  background: #000; /* Example background color */
  padding: 20px;
  text-align: center;
}

/* Styling footer links */
footer a {
  color: #9a9a9a;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}

footer a:hover {
  text-decoration: underline;
}

footer p{
  color: #9a9a9a;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}

footer p:hover {
  text-decoration: underline;
  color: #f4f4f4;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-info,
.footer-services,
.footer-contact,
.footer-social {
    flex: 1;
    margin: 10px;
    min-width: 220px;
    color: #5a5a5a;
}

.footer-info h2,
.footer-services h2,
.footer-contact h2,
.footer-social h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.footer-info p,
.footer-services ul,
.footer-contact p {
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-services ul {
    list-style-type: none;
    padding: 0;
}

.footer-services ul li {
    margin-bottom: 10px;
}

.footer-services ul li a {
    color: #9a9a9a;
    text-decoration: none;
}

.footer-services ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-contact a {
    color: #9a9a9a;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-social {
    text-align: center;
}

.footer-social .social-icon {
    display: inline-block;
    margin: 0 2px;
    vertical-align: middle;
    text-align: center;
}

.footer-social .social-icon img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #f4f4f4;
    font-size: 0.8em;
}

.footer-categories {
    background-color: #000;
    padding: 40px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

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

.categories-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.category-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.category-column h3 {
    font-size: 13px;
    margin-bottom: 15px;
    color: #fff;
}

.category-column h3:hover {
    font-size: 13px;
    margin-bottom: 15px;
    color: #ebebeb;
}

.category-column ul {
    list-style: none;
    padding: 0;
}

.category-column ul li {
    margin-bottom: 10px;
}

.category-column ul li a {
    text-decoration: none;
    color: #9a9a9a;
    font-size: 12px;
}

.category-column ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-boxes, .why-us-boxes {
    flex-direction: column;
  }
  
  #hero-section {
    padding: 50px 20px;
  }

  #contact-form {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Loader Styles */
#page-loader {
  position: fixed; /* Fixed positioning to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(255, 255, 255, 0.8); /* Light background with some transparency */
  display: flex; /* Flexbox to center the loader */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 9999; /* High z-index to stay on top of other elements */
  transition: opacity 0.5s ease; /* Smooth transition for hiding */
  opacity: 1; /* Fully visible initially */
}

/* Hidden class to fade out the loader */
#page-loader.hidden {
  opacity: 0; /* Fade out */
  pointer-events: none; /* Prevent interaction when hidden */
}

/* Loader Spinner */
.loader {
  border: 8px solid #f3f3f3; /* Light gray border */
  border-top: 8px solid #3498db; /* Blue border on top */
  border-radius: 50%; /* Circular shape */
  width: 60px; /* Width of the loader */
  height: 60px; /* Height of the loader */
  animation: spin 1s linear infinite; /* Spin animation */
}

/* Keyframes for spinning animation */
@keyframes spin {
  0% { transform: rotate(0deg); } /* Start rotation */
  100% { transform: rotate(360deg); } /* End rotation */
}
